From ab79d786b2649c1248f8657d399be1df7bf50e5b Mon Sep 17 00:00:00 2001 From: SevicheCC <91365763+Sevichecc@users.noreply.github.com> Date: Mon, 26 Jun 2023 23:24:36 +0800 Subject: [PATCH] fix: optional website --- components/CreatAppForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;