diff --git a/packages/twenty-front/src/modules/activities/notes/components/NoteCard.tsx b/packages/twenty-front/src/modules/activities/notes/components/NoteCard.tsx index 163ca6ce9..15fb1bfcb 100644 --- a/packages/twenty-front/src/modules/activities/notes/components/NoteCard.tsx +++ b/packages/twenty-front/src/modules/activities/notes/components/NoteCard.tsx @@ -84,7 +84,7 @@ export const NoteCard = ({ const theme = useTheme(); const openActivityRightDrawer = useOpenActivityRightDrawer(); - const noteBody = JSON.parse(note.body ?? '[]'); + const noteBody = note.body ? JSON.parse(note.body) : []; const body = noteBody.length ? noteBody