Reduce thread timeout for scrolling to content

This commit is contained in:
Bojan Mojsilovic 2024-01-08 13:38:34 +01:00
parent c2e050be72
commit 4fbe3d83ad

View File

@ -125,7 +125,7 @@ const Thread: Component = () => {
scrollWindowTo(rect.top - header - banner); scrollWindowTo(rect.top - header - banner);
// repliesHolder.setAttribute('style', `height: ${document.documentElement.scrollHeight}px;`) // repliesHolder.setAttribute('style', `height: ${document.documentElement.scrollHeight}px;`)
}, 1000) }, 10)
} }
}); });