diff --git a/frontend/app/components/shared/SessionListContainer/components/Notes/NoteList.tsx b/frontend/app/components/shared/SessionListContainer/components/Notes/NoteList.tsx index f5a0fd119..b16c43fba 100644 --- a/frontend/app/components/shared/SessionListContainer/components/Notes/NoteList.tsx +++ b/frontend/app/components/shared/SessionListContainer/components/Notes/NoteList.tsx @@ -39,7 +39,7 @@ function NotesList({ members }: {members: Array>}) { date={note.createdAt} noteId={note.noteId} sessionId={note.sessionId} - userEmail={members.toJS().find(m => m.id === note.userId)?.email || note.userId} + userEmail={members.find(m => m.id === note.userId)?.email || note.userId} /> ))}