From 482281124e6d313cfd612d33a29a45e103b7a620 Mon Sep 17 00:00:00 2001 From: Mandy Wade Date: Sun, 6 Mar 2022 08:36:08 -0500 Subject: [PATCH] Updates to the index section --- .../index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lessons/full-stack-build-an-app-adding-images-to-users/index.md b/lessons/full-stack-build-an-app-adding-images-to-users/index.md index c64b5ffd..ba658050 100644 --- a/lessons/full-stack-build-an-app-adding-images-to-users/index.md +++ b/lessons/full-stack-build-an-app-adding-images-to-users/index.md @@ -35,7 +35,7 @@ dotnet ef database update ## Update our `types.ts` -Add `photoURL` to our types +Add `photoURL` to our types. ```typescript export type NewUserType = { @@ -86,10 +86,10 @@ We'll add a state to track if we are uploading: const [isUploading, setIsUploading] = useState(false) ``` -Also copy over the `uploadFile` code from `NewRestaurant.tsx` - Copying the code -is ok for now. We can clean this up later. +Also, copy over the `uploadFile` code from `NewRestaurant.tsx` - Copying the +code is ok for now. We can clean this up later. -Also add a mutation: +Also, add a mutation: ```typescript const uploadFileMutation = useMutation(uploadFile, {