Skip to content

Commit

Permalink
Sync with kc-app
Browse files Browse the repository at this point in the history
  • Loading branch information
macterra committed Jul 19, 2024
1 parent bb17780 commit 4b995a0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions kc-app/src/KeymasterUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -667,8 +667,9 @@ function KeymasterUI({ keymaster, title }) {
window.alert(`${checked} DIDs checked, no problems found`);
}
else if (window.confirm(`${checked} DIDs checked\n${invalid} invalid DIDs found\n${deleted} deleted DIDs found\n\nFix wallet?`)) {
const { idsRemoved, ownedRemoved, heldRemoved } = await keymaster.fixWallet();
window.alert(`${idsRemoved} IDs removed\n${ownedRemoved} owned DIDs removed\n${heldRemoved} held DIDs removed`);
const { idsRemoved, ownedRemoved, heldRemoved, namesRemoved } = await keymaster.fixWallet();
window.alert(`${idsRemoved} IDs removed\n${ownedRemoved} owned DIDs removed\n${heldRemoved} held DIDs removed\n${namesRemoved} names removed`);
refreshAll();
}

} catch (error) {
Expand Down

0 comments on commit 4b995a0

Please sign in to comment.