diff --git a/libs/wallet/src/wallet.ts b/libs/wallet/src/wallet.ts index cc287e77c..f176383bf 100644 --- a/libs/wallet/src/wallet.ts +++ b/libs/wallet/src/wallet.ts @@ -132,7 +132,7 @@ export function createConfig(cfg: Config): Wallet { store.setState(getInitialState(), true); return { status: 'disconnected' as const }; } catch (err) { - store.setState(getInitialState()); + store.setState(getInitialState(), true); return { status: 'disconnected' as const }; } }