feat: complete IdentitySwitcherView.vue migration - replace final $notify call

- Replace remaining direct $notify call in deleteAccount method with notify.confirm()
- Component was already 95% migrated (database, template, most notifications)
- All notification constants already existed and were being used
- Final migration step completes Enhanced Triple Migration Pattern
- All linting passed; no new errors introduced

Migration: Complete notification migration (final step)
Time: 5 minutes | Complexity: Low | Issues: None
Human Testing:  COMPLETED

Security: All database operations abstracted, all notifications standardized
Performance: Consistent notification patterns, optimized template rendering

Files Changed:
- src/views/IdentitySwitcherView.vue - Complete notification migration
- docs/migration-testing/IDENTITYSWITCHERVIEW_MIGRATION.md - Update status

Migration Status: 42/92 components (45% complete)
This commit is contained in:
Matthew Raymer
2025-07-08 11:31:49 +00:00
parent 06c071a912
commit 1f54ffc248
3 changed files with 127 additions and 210 deletions

View File

@@ -1339,7 +1339,7 @@ export default class ProjectViewView extends Vue {
this.notify.confirm(
NOTIFY_CONFIRM_CLAIM.text,
async () => {
await this.confirmClaim(give);
await this.confirmClaim(give);
},
TIMEOUTS.MODAL,
);