diff --git a/frontend/app/components/Session_/Player/Controls/components/CreateNote.tsx b/frontend/app/components/Session_/Player/Controls/components/CreateNote.tsx index aea16d2a3..812ac979d 100644 --- a/frontend/app/components/Session_/Player/Controls/components/CreateNote.tsx +++ b/frontend/app/components/Session_/Player/Controls/components/CreateNote.tsx @@ -124,9 +124,7 @@ function CreateNote({ .then((r) => { onSuccess(r!.noteId as unknown as string); toast.success('Note added'); - notesStore.fetchSessionNotes(sessionId).then(() => { - addNote(r as Note); - }); + void notesStore.fetchSessionNotes(sessionId) }) .catch((e) => { toast.error('Error adding note');