fix: addressed type issue

This commit is contained in:
Sheen Capadngan
2024-07-02 20:28:03 +08:00
parent 398a8f363d
commit fe9af20d8c

View File

@@ -38,7 +38,7 @@ const formSchema = z
}
});
type TFormSchema = z.infer<typeof formSchema>;
export type TFormSchema = z.infer<typeof formSchema>;
type Props = {
isOpen: boolean;