diff --git a/frontend/app/components/shared/SessionsTabOverview/components/Notes/NoteList.tsx b/frontend/app/components/shared/SessionsTabOverview/components/Notes/NoteList.tsx index 0cae90242..20c3522ce 100644 --- a/frontend/app/components/shared/SessionsTabOverview/components/Notes/NoteList.tsx +++ b/frontend/app/components/shared/SessionsTabOverview/components/Notes/NoteList.tsx @@ -10,8 +10,8 @@ function NotesList() { const { notesStore } = useStore(); React.useEffect(() => { - notesStore.fetchNotes(); - }, []); + void notesStore.fetchNotes(); + }, [notesStore.page]); const list = notesStore.notes; @@ -33,7 +33,7 @@ function NotesList() { } >