mirror of
https://github.com/Sevichecc/m-oauth.git
synced 2025-04-29 22:49:31 +08:00
fix: optional website
This commit is contained in:
parent
f8e5909ddd
commit
ab79d786b2
1 changed files with 1 additions and 1 deletions
|
@ -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<typeof formSchema>;
|
||||
|
|
Loading…
Reference in a new issue