fix: Use instant scroll for discussion navigation

This commit is contained in:
Lukas May
2026-03-06 11:10:50 +01:00
parent 3fcfa61914
commit 50043f4c61

View File

@@ -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);