diff --git a/lessons/full-stack-build-an-app-adding-signup/index.md b/lessons/full-stack-build-an-app-adding-signup/index.md index c9174c20..3c2e6153 100644 --- a/lessons/full-stack-build-an-app-adding-signup/index.md +++ b/lessons/full-stack-build-an-app-adding-signup/index.md @@ -37,7 +37,7 @@ We can add a `
` tag to show the error message: } ``` -then add `useHistory` so we can redirect the user after signing up: +Then add `useHistory` so we can redirect the user after signing up: ```javascript const history = useHistory() @@ -45,7 +45,7 @@ const history = useHistory() ## Define handlers for the fields -then we will add a function to handle the user's input in the fields: +Then we will add a function to handle the user's input in the fields: ```javascript function handleStringFieldChange(event) { @@ -59,10 +59,10 @@ function handleStringFieldChange(event) { ``` Now use our two handling functions for the various `` fields and the -`