diff --git a/client/src/pages/home.js b/client/src/pages/home.js index f3c8e9a..56cc64f 100644 --- a/client/src/pages/home.js +++ b/client/src/pages/home.js @@ -16,6 +16,7 @@ export default function Home() { const res = await characterService.getCharacters(); + // TODO: Handle a failed request. if (!res.ok) return; const characters = await res.json();