misc tweaks and linting clean-up

This commit is contained in:
2024-07-06 13:04:15 -06:00
parent 9677a344c2
commit 6b65e31649
7 changed files with 45 additions and 13 deletions

View File

@@ -164,7 +164,7 @@ export default class IdentitySwitcherView extends Vue {
group: "modal",
type: "confirm",
title: "Delete Identity?",
text: "Are you sure you want to permanently delete this identity? (There is no undo.)",
text: "Are you sure you want to erase this identity? (There is no undo. You may want to select it and back it up just in case.)",
onYes: async () => {
await accountsDB.open();
await accountsDB.accounts.delete(id);
@@ -185,7 +185,7 @@ export default class IdentitySwitcherView extends Vue {
title: "Cannot Delete",
text: "You cannot delete the active identity.",
},
5000,
3000,
);
}
}