Skip to content
This repository was archived by the owner on Jun 19, 2024. It is now read-only.

Commit 6a95392

Browse files
authored
Update CS Form to include .NET and In-app wallet (#2617)
1 parent 64d1692 commit 6a95392

File tree

1 file changed

+34
-0
lines changed
  • src/components/help/contact-forms/connect

1 file changed

+34
-0
lines changed

src/components/help/contact-forms/connect/index.tsx

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ const PROBLEM_AREAS: ProblemAreaItem[] = [
3939
label: "Account Abstraction",
4040
component: <AffectedAreaInput />,
4141
},
42+
{
43+
label: "In-app wallet",
44+
component: <AffectedAreaInput />,
45+
},
4246
{
4347
label: "Connect SDKs",
4448
component: (
@@ -66,6 +70,36 @@ const PROBLEM_AREAS: ProblemAreaItem[] = [
6670
</>
6771
),
6872
},
73+
{
74+
label: ".NET SDK",
75+
component: (
76+
<>
77+
<SDKVersionInput />
78+
<SupportForm_SelectInput
79+
formLabel="OS"
80+
formValue="extraInfo_OS"
81+
required={true}
82+
promptText="Select an operating system"
83+
options={["Windows", "MacOS", "Linux", "Other"]}
84+
/>
85+
<SupportForm_TextInput
86+
formLabel="Framework"
87+
formValue="extraInfo_dotNET_Framework"
88+
required={false}
89+
placeholder="MAUI | Blazor | Godot, etc"
90+
inputType="text"
91+
/>
92+
<SupportForm_TextInput
93+
formLabel="Target OS"
94+
formValue="extraInfo_dotNET_Target_OS"
95+
required={false}
96+
inputType="text"
97+
/>
98+
<DescriptionInput />
99+
<AttachmentForm />
100+
</>
101+
),
102+
},
69103
{
70104
label: "Pay",
71105
component: <AffectedAreaInput />,

0 commit comments

Comments
 (0)