From da8c62e60d099c46691574a57151897d64979b1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yusuf=20=C4=B0pek?= Date: Sun, 15 Feb 2026 10:56:41 +0300 Subject: [PATCH] fix(ui): use filteredComments instead of comments in video page --- components/video-page-content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/video-page-content.tsx b/components/video-page-content.tsx index d691632..099a491 100644 --- a/components/video-page-content.tsx +++ b/components/video-page-content.tsx @@ -2079,7 +2079,7 @@ export function VideoPageContent({ mode, videoId, projectId: propProjectId }: Vi style={{ left: `calc(${duration > 0 ? (currentTime / duration) * 100 : 0}% - 2px)` }} /> - {comments.map((comment) => { + {filteredComments.map((comment) => { const markerColor = comment.tag?.color || (comment.isResolved ? '#22C55E' : '#22D3EE'); return (