diff --git a/frontend/src/app/boards/[boardId]/page.tsx b/frontend/src/app/boards/[boardId]/page.tsx index 84f3789..9fd5b2d 100644 --- a/frontend/src/app/boards/[boardId]/page.tsx +++ b/frontend/src/app/boards/[boardId]/page.tsx @@ -50,7 +50,10 @@ import { streamApprovalsApiV1BoardsBoardIdApprovalsStreamGet, updateApprovalApiV1BoardsBoardIdApprovalsApprovalIdPatch, } from "@/api/generated/approvals/approvals"; -import { listTaskCommentFeedApiV1ActivityTaskCommentsGet } from "@/api/generated/activity/activity"; +import { + listTaskCommentFeedApiV1ActivityTaskCommentsGet, + streamTaskCommentFeedApiV1ActivityTaskCommentsStreamGet, +} from "@/api/generated/activity/activity"; import { getBoardSnapshotApiV1BoardsBoardIdSnapshotGet } from "@/api/generated/boards/boards"; import { createBoardMemoryApiV1BoardsBoardIdMemoryPost, @@ -219,6 +222,7 @@ const LiveFeedCard = memo(function LiveFeedCard({ authorRole, authorAvatar, onViewTask, + isNew, }: { comment: TaskComment; taskTitle: string; @@ -226,10 +230,18 @@ const LiveFeedCard = memo(function LiveFeedCard({ authorRole?: string | null; authorAvatar: string; onViewTask?: () => void; + isNew?: boolean; }) { const message = (comment.message ?? "").trim(); return ( -