diff --git a/api/forum.db b/api/forum.db index 89ba061..ef88bf9 100644 Binary files a/api/forum.db and b/api/forum.db differ 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 ; })} );