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