aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--api/forum.dbbin20480 -> 20480 bytes
-rw-r--r--src/components/notes.jsx2
2 files changed, 1 insertions, 1 deletions
diff --git a/api/forum.db b/api/forum.db
index 89ba061..ef88bf9 100644
--- a/api/forum.db
+++ b/api/forum.db
Binary files 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 <ChatBubble key={chatbubble.message_id} id={chatbubble.message_id} position={chatbubble.position} text={chatbubble.message}/>;
})}
</>);