diff --git a/src/views/app/folder-panel/lists-item/item-avatar.jsx b/src/views/app/folder-panel/lists-item/item-avatar.jsx index d55cd6466..45d9c29c7 100644 --- a/src/views/app/folder-panel/lists-item/item-avatar.jsx +++ b/src/views/app/folder-panel/lists-item/item-avatar.jsx @@ -22,7 +22,7 @@ export const ItemAvatar = ({ item, selected, selecting, toggle, folderId, isSear const targetParticipants = folderId === '5' ? ParticipantRole.TO : ParticipantRole.FROM; const [t] = useTranslation(); const [avatarLabel, avatarEmail] = useMemo(() => { - let sender = item.participants.find((p) => p.type === targetParticipants); + let sender = item?.participants?.find((p) => p.type === targetParticipants); if (!sender) [sender] = item.participants; return [sender.fullName || sender.name || sender.address || '.', sender.address]; }, [item.participants, targetParticipants]);