diff options
Diffstat (limited to 'src/components/notes.jsx')
-rw-r--r-- | src/components/notes.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/notes.jsx b/src/components/notes.jsx index d1bc454..11f28af 100644 --- a/src/components/notes.jsx +++ b/src/components/notes.jsx @@ -5,7 +5,7 @@ import { AppContext } from "../App"; export default function Notes() { const { messages } = useContext(AppContext); return (<> - {messages.map((chatbubble) => { + {messages && messages.map((chatbubble) => { return <ChatBubble key={chatbubble.message_id} id={chatbubble.message_id} position={chatbubble.position} text={chatbubble.message}/>; })} </>); |