mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
fix(console): app creation quota limit should be displayed on create app form (#4402)
This commit is contained in:
parent
c5bf1d7171
commit
ff6a1ffa4d
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ function CreateForm({ defaultCreateType, defaultCreateFrameworkName, onClose }:
|
|||
control,
|
||||
register,
|
||||
formState: { errors, isSubmitting },
|
||||
} = useForm<FormData>();
|
||||
} = useForm<FormData>({ defaultValues: { type: defaultCreateType } });
|
||||
|
||||
const {
|
||||
field: { onChange, value, name, ref },
|
||||
|
|
Loading…
Reference in a new issue