Skip to content

Commit

Permalink
Fix pk back nav (#1688)
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Sinclair <[email protected]>
  • Loading branch information
BrodyHughes and DanielSinclair authored Aug 29, 2024
1 parent 17b7034 commit f753adf
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ export function WalletDetails() {
wallet,
account,
password: state?.password,
fromChooseGroup: true,
},
},
);
Expand Down Expand Up @@ -234,7 +235,12 @@ export function WalletDetails() {
navigate(
ROUTES.SETTINGS__PRIVACY__WALLETS_AND_KEYS__WALLET_DETAILS__RECOVERY_PHRASE_WARNING,
{
state: { wallet, password: state?.password, showQuiz: !walletBackedUp },
state: {
wallet,
password: state?.password,
showQuiz: !walletBackedUp,
fromChooseGroup: true,
},
},
);
}, [navigate, state?.password, wallet, walletBackedUp]);
Expand Down

0 comments on commit f753adf

Please sign in to comment.