From 722020ea8602e232aa139ff93219f60ae2c36b28 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Sat, 7 Jun 2025 18:09:04 -0600 Subject: [PATCH] fix linting --- src/views/IdentitySwitcherView.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/views/IdentitySwitcherView.vue b/src/views/IdentitySwitcherView.vue index 1c8f6f76..efcda8c1 100644 --- a/src/views/IdentitySwitcherView.vue +++ b/src/views/IdentitySwitcherView.vue @@ -187,10 +187,9 @@ export default class IdentitySwitcherView extends Vue { 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 () => { const platformService = PlatformServiceFactory.getInstance(); - await platformService.dbExec( - `DELETE FROM accounts WHERE id = ?`, - [id], - ); + await platformService.dbExec(`DELETE FROM accounts WHERE id = ?`, [ + id, + ]); if (USE_DEXIE_DB) { // one of the few times we use accountsDBPromise directly; try to avoid more usage const accountsDB = await accountsDBPromise;