diff --git a/src/contentScripts/views/App.vue b/src/contentScripts/views/App.vue index f43a0dcb..4d83655f 100644 --- a/src/contentScripts/views/App.vue +++ b/src/contentScripts/views/App.vue @@ -77,10 +77,8 @@ const isTopbarFixed = computed(() => { watch( () => activatedPage.value, () => { - setTimeout(() => { - const osInstance = scrollbarRef.value.osInstance() - osInstance.elements().viewport.scrollTop = 0 - }, 500) + const osInstance = scrollbarRef.value.osInstance() + osInstance.elements().viewport.scrollTop = 0 }, )