diff --git a/client/src/pages/home.js b/client/src/pages/home.js index 87a5022..c93deba 100644 --- a/client/src/pages/home.js +++ b/client/src/pages/home.js @@ -41,12 +41,18 @@ export default function Home() { } + characters = characters; + return ( <> - - - {getCharacterCards()} - + {characters.length > 0 ? + <> + + + {getCharacterCards()} + + + : null} ); } \ No newline at end of file