From 9743da1e9b7d77c06045350b83f8eba6f0999d65 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Tue, 10 Jan 2023 20:05:47 +0800 Subject: [PATCH] Fix cached statuses gone --- src/pages/status.jsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/pages/status.jsx b/src/pages/status.jsx index 600449a0..ba689ad1 100644 --- a/src/pages/status.jsx +++ b/src/pages/status.jsx @@ -198,9 +198,7 @@ function StatusPage({ id }) { } // RESET - // This will probably fail when user "forward" back to open the Status page again, but gosh, too many use-cases to mimic what the browser does scrollOffsets.current = null; - cachedStatusesMap.current = {}; }, [statuses]); useEffect(() => { @@ -227,9 +225,10 @@ function StatusPage({ id }) { useEffect(() => { return () => { - // clear all scrollPositions + // RESET states.scrollPositions = {}; states.reloadStatusPage = 0; + cachedStatusesMap.current = {}; }; }, []);