From 7332e81e6eca02100c168aa56684965740730f19 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Sat, 27 Dec 2025 16:45:49 -0500 Subject: [PATCH] Fix https://github.com/donetick/donetick/issues/373 compact card not showing the right performer --- src/views/Chores/CompactChoreCard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Chores/CompactChoreCard.jsx b/src/views/Chores/CompactChoreCard.jsx index 20bb228..a9b184c 100644 --- a/src/views/Chores/CompactChoreCard.jsx +++ b/src/views/Chores/CompactChoreCard.jsx @@ -412,7 +412,7 @@ const CompactChoreCard = ({ // Assignee (if not current user) if (chore.assignedTo && chore.assignedTo !== userProfile.id) { const assignee = performers.find( - p => p.id === chore.assignedTo, + p => p.userId === chore.assignedTo, )?.displayName if (assignee) parts.push(assignee) }