This commit is contained in:
Saeed Vaziry
2025-05-21 21:05:13 +02:00
parent fe3317692b
commit a40c2828c2
20 changed files with 568 additions and 14 deletions

View File

@ -127,7 +127,7 @@ export default function CreateServer({ children }: { children: React.ReactNode }
</SelectGroup>
</SelectContent>
</Select>
<InputError />
<InputError message={form.errors.provider} />
</FormField>
{form.data.provider && form.data.provider !== 'custom' && (
@ -160,7 +160,7 @@ export default function CreateServer({ children }: { children: React.ReactNode }
</Button>
</ConnectServerProvider>
</div>
<InputError />
<InputError message={form.errors.server_provider} />
</FormField>
)}