diff --git a/src/components/Timeline/index.tsx b/src/components/Timeline/index.tsx index 9e9cf4df..3d3a349b 100644 --- a/src/components/Timeline/index.tsx +++ b/src/components/Timeline/index.tsx @@ -233,7 +233,14 @@ const Timeline: React.FC = ({ } }) - useScrollToTop(flRef) + useScrollToTop( + useRef({ + scrollToTop: () => { + shouldAutoFetch.value = false + flRef.current?.scrollToOffset({ animated: true, offset: 0 }) + } + }) + ) useGlobalStorageListener('account.active', () => flRef.current?.scrollToOffset({ offset: 0, animated: false }) )