From 43c4fc65342a9599bbd9342be2afc3fe1fd3710e Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Mon, 6 Feb 2023 19:54:48 +0800 Subject: [PATCH] resolve only works when authenticated --- src/components/account.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/account.jsx b/src/components/account.jsx index 5c66ccf9..385e119a 100644 --- a/src/components/account.jsx +++ b/src/components/account.jsx @@ -38,7 +38,7 @@ function Account({ account, instance: propInstance, onClose }) { q: account, type: 'accounts', limit: 1, - resolve: true, + resolve: authenticated, }); if (result.accounts.length) { setInfo(result.accounts[0]);