Skip to content

Commit

Permalink
fix: request first address on wallet start success (#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreabadesso authored Nov 13, 2024
1 parent 84f599c commit ba2d6fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sagas/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ import {
firstAddressSuccess,
setUseSafeBiometryMode,
lockScreen,
firstAddressRequest,
} from '../actions';
import { fetchTokenData } from './tokens';
import {
Expand Down Expand Up @@ -313,7 +314,7 @@ export function* startWallet(action) {
}

yield put(walletRefreshSharedAddress());

yield put(firstAddressRequest());
yield put(startWalletSuccess());

// The way the redux-saga fork model works is that if a saga has `forked`
Expand Down

0 comments on commit ba2d6fb

Please sign in to comment.