Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
elhoucine committed Jun 18, 2024
1 parent 45283ef commit 47bfd5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/inscription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const Inscription = () => {
});
const [isSubmitSuccessfull, setIsSubmitSuccessfull] = useState<boolean>(false);
const [isRegisterDataValid, setIsRegisterDataValid] = useState<boolean>(false);
const [isPending, setIsPending] = useState<boolena>(false);
const [isPending, setIsPending] = useState<boolean>(false);
const { languages } = useLanguages();

const { addUser, resendVerificationEmail } = useUserRequests();
Expand Down

0 comments on commit 47bfd5b

Please sign in to comment.