diff --git a/frontend/src/app/boards/[boardId]/page.tsx b/frontend/src/app/boards/[boardId]/page.tsx index 110660a3..f3fcdc61 100644 --- a/frontend/src/app/boards/[boardId]/page.tsx +++ b/frontend/src/app/boards/[boardId]/page.tsx @@ -313,22 +313,48 @@ const LiveFeedCard = memo(function LiveFeedCard({ comment, taskTitle, authorLabel, + onViewTask, }: { comment: TaskComment; taskTitle: string; authorLabel: string; + onViewTask?: () => void; }) { const message = (comment.message ?? "").trim(); return (
{taskTitle}
+{authorLabel}