Add socials
This commit is contained in:
@ -40,6 +40,7 @@ export function CommissionOrderForm({ types }: Props) {
|
||||
extraIds: [],
|
||||
customerName: "",
|
||||
customerEmail: "",
|
||||
customerSocials: "",
|
||||
message: "",
|
||||
},
|
||||
})
|
||||
@ -190,7 +191,20 @@ export function CommissionOrderForm({ types }: Props) {
|
||||
<FormItem>
|
||||
<FormLabel>Email</FormLabel>
|
||||
<FormControl>
|
||||
<Input placeholder="jane@example.com" {...field} />
|
||||
<Input placeholder="E-Mail address for invoice and/or contact" {...field} />
|
||||
</FormControl>
|
||||
<FormMessage />
|
||||
</FormItem>
|
||||
)}
|
||||
/>
|
||||
<FormField
|
||||
control={form.control}
|
||||
name="customerSocials"
|
||||
render={({ field }) => (
|
||||
<FormItem>
|
||||
<FormLabel>Socials</FormLabel>
|
||||
<FormControl>
|
||||
<Input placeholder="Alternative for contact (telegram, bsky, fediverse/mastodon)" {...field} />
|
||||
</FormControl>
|
||||
<FormMessage />
|
||||
</FormItem>
|
||||
|
||||
Reference in New Issue
Block a user