Add socials

This commit is contained in:
2025-12-27 16:18:46 +01:00
parent 8d449206d2
commit 78d7afcddb
5 changed files with 31 additions and 10 deletions

View File

@ -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>