From 95d919bd5af4c9bd754b484f000b4cd62b70b178 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sat, 11 Mar 2023 22:07:20 +0800 Subject: [PATCH] More caching, but still not enough --- src/components/account-info.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/account-info.jsx b/src/components/account-info.jsx index c4b478a5..73b1be9f 100644 --- a/src/components/account-info.jsx +++ b/src/components/account-info.jsx @@ -36,6 +36,7 @@ function AccountInfo({ (async () => { try { const info = await fetchAccount(); + states.accounts[`${info.id}@${instance}`] = info; setInfo(info); setUIState('default'); } catch (e) {