From 353c911232fa6b04643dc48c8016667d31730438 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 29 Dec 2022 10:27:36 +0800 Subject: [PATCH] Temporarily disable this now --- src/pages/status.jsx | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/pages/status.jsx b/src/pages/status.jsx index 5a5d1b13..eb5773a2 100644 --- a/src/pages/status.jsx +++ b/src/pages/status.jsx @@ -81,15 +81,16 @@ function StatusPage({ id }) { let heroStatus = snapStates.statuses.get(id); if (hasStatus) { console.log('Hero status is cached'); - heroTimer = setTimeout(async () => { - try { - heroStatus = await heroFetch(); - states.statuses.set(id, heroStatus); - } catch (e) { - // Silent fail if status is cached - console.error(e); - } - }, 1000); + // NOTE: This might conflict if the user interacts with the status before the fetch is done, e.g. favouriting it + // heroTimer = setTimeout(async () => { + // try { + // heroStatus = await heroFetch(); + // states.statuses.set(id, heroStatus); + // } catch (e) { + // // Silent fail if status is cached + // console.error(e); + // } + // }, 1000); } else { try { heroStatus = await heroFetch();