clean up dev logs

This commit is contained in:
syuilo
2025-02-17 14:38:15 +09:00
parent 93e7aad44e
commit 34f8345bc8
4 changed files with 6 additions and 14 deletions

View File

@@ -134,7 +134,6 @@ export function scrollToBottom(
export function isTopVisible(el: HTMLElement, tolerance = 1): boolean {
const scrollTop = getScrollPosition(el);
if (_DEV_) console.log(scrollTop, tolerance, scrollTop <= tolerance);
return scrollTop <= tolerance;
}