Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: removed passwordOutdated check on wallet lock
  • Loading branch information
lwin-kyaw committed Jul 21, 2025
commit 4c246b0b8fb64d1fb78a6bca675d88404404a998
8 changes: 0 additions & 8 deletions ui/store/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2192,14 +2192,6 @@ export function lockMetamask(): ThunkAction<
dispatch(showLoadingIndication());

return backgroundSetLocked()
.then(() => {
// check seedless password outdated when lock app
dispatch(checkIsSeedlessPasswordOutdated(true));
return Promise.resolve();
})
.catch((error) => {
return Promise.reject(error);
})
.then(() => forceUpdateMetamaskState(dispatch))
.catch((error) => {
dispatch(displayWarning(getErrorMessage(error)));
Expand Down