Sfoglia il codice sorgente

chore: disable eslint warning for incompatible-library

satnaing 8 mesi fa
parent
commit
03dfeff43d
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  1. 1 0
      src/features/auth/otp/components/otp-form.tsx

+ 1 - 0
src/features/auth/otp/components/otp-form.tsx

@@ -39,6 +39,7 @@ export function OtpForm({ className, ...props }: OtpFormProps) {
     defaultValues: { otp: '' },
   })
 
+  // eslint-disable-next-line react-hooks/incompatible-library
   const otp = form.watch('otp')
 
   function onSubmit(data: z.infer<typeof formSchema>) {