Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
fix: Navigation bug on pass code change
Browse files Browse the repository at this point in the history
  • Loading branch information
reasje committed Aug 15, 2024
1 parent c41726d commit ac0f580
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ class PasscodeChangeConfirmPagePresenter extends PasscodeBasePagePresenter {
_passcodeUseCase.setNeedSetPasscode(false);
_passcodeUseCase.setPasscode(expectedNumbers.join());

navigator?.popFeature();
navigator?.popUntil((route) {
return route.settings.name?.contains('SecuritySettingsPage') ?? false;
});
}
}

0 comments on commit ac0f580

Please sign in to comment.