-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🔒️ Ajout token CSRF #2651
base: main
Are you sure you want to change the base?
🔒️ Ajout token CSRF #2651
Conversation
3953e06
to
454020d
Compare
@@ -0,0 +1,3 @@ | |||
export default function CSRF() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
juste par curiosité, ca marcherait si c'était une route ? ce serait moins "étonnant" à la lecture :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
J'allais faire la même remarque :)
@@ -57,6 +58,11 @@ export const Form: FC<FormProps> = ({ | |||
status: undefined, | |||
}); | |||
|
|||
if (!state) { | |||
const router = useRouter(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah c'est ok maintenant les hooks conditionnels ?? c'était un gros no-no-no quand c'est sorti
No description provided.