diff --git a/src/app/hooks/useWalletReducer.ts b/src/app/hooks/useWalletReducer.ts index c35db0ee7..e6b7917f7 100644 --- a/src/app/hooks/useWalletReducer.ts +++ b/src/app/hooks/useWalletReducer.ts @@ -227,6 +227,9 @@ const useWalletReducer = () => { ); try { dispatch(addLedgerAcountAction(newLedgerAccountsList)); + if (isLedgerAccount && updatedLedgerAccount.id === selectedAccount?.id) { + switchAccount(updatedLedgerAccount); + } } catch (err) { return Promise.reject(err); }