Skip to content

Commit f3a55c8

Browse files
authored
Merge pull request #5228 from EdgeApp/sam/fio-404-error
Silently fail refreshConnectedWallets in AccountCallbackManager
2 parents ff390fa + 2683323 commit f3a55c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/services/AccountCallbackManager.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export function AccountCallbackManager(props: Props) {
159159
if (dirty.walletList) {
160160
// Update all wallets (hammer mode):
161161
datelog('Updating wallet list')
162-
await dispatch(refreshConnectedWallets)
162+
await dispatch(refreshConnectedWallets).catch(err => console.warn(err))
163163
await snooze(1000)
164164
}
165165
},

0 commit comments

Comments
 (0)