Skip to content

Commit

Permalink
Merge pull request #646 from Snaylaker/fix-typo
Browse files Browse the repository at this point in the history
fixed typo in UseFormStatus example
  • Loading branch information
tdd committed May 13, 2024
2 parents 161c122 + 35b5d3f commit f6b9c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/reference/react-dom/hooks/useFormStatus.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export default function UsernameForm() {
<h3>Réserver l’identifiant : </h3><br />
<input type="text" name="username" disabled={pending} />
<button type="submit" disabled={pending}>
Envoyer'}
Envoyer
</button>
<br />
<p>{data ? `Récupération de ${data?.get('username')}...` : ''}</p>
Expand Down

0 comments on commit f6b9c08

Please sign in to comment.