diff --git a/components/CreatAppForm.tsx b/components/CreatAppForm.tsx index 2a7ebd2..8c1c54a 100644 --- a/components/CreatAppForm.tsx +++ b/components/CreatAppForm.tsx @@ -37,7 +37,7 @@ const formSchema = z.object({ clientName: z.string().trim(), redirectUris: z.string().trim(), scopes: z.string().array().nonempty().optional(), - website: z.string().url().trim().optional(), + website: z.string().trim().optional(), }); export type FormSchema = z.infer;