diff --git a/apps/web/src/components/review/ReviewTab.tsx b/apps/web/src/components/review/ReviewTab.tsx index 164ec52..494a7f9 100644 --- a/apps/web/src/components/review/ReviewTab.tsx +++ b/apps/web/src/components/review/ReviewTab.tsx @@ -262,7 +262,7 @@ export function ReviewTab({ initiativeId }: ReviewTabProps) { const handleCommentClick = useCallback((commentId: string) => { const el = document.querySelector(`[data-comment-id="${commentId}"]`); if (el) { - el.scrollIntoView({ behavior: "smooth", block: "center" }); + el.scrollIntoView({ behavior: "instant", block: "center" }); // Brief highlight flash el.classList.add("ring-2", "ring-primary/50"); setTimeout(() => el.classList.remove("ring-2", "ring-primary/50"), 1500);