diff --git a/apps/desktop/src/platform/services/electron-storage.service.ts b/apps/desktop/src/platform/services/electron-storage.service.ts index c2c8d9671ff..093d9754ecd 100644 --- a/apps/desktop/src/platform/services/electron-storage.service.ts +++ b/apps/desktop/src/platform/services/electron-storage.service.ts @@ -111,8 +111,9 @@ export class ElectronStorageService implements AbstractStorageService { // Attempt to remove the corrupted key try { this.store.delete(key); - } catch { + } catch (cleanupError) { // Ignore errors during cleanup + this.logService.debug("Failed to clean up corrupted key", key, cleanupError); } return Promise.resolve(null); }