From 9fb65316db96720ecb20e146fecbd9dd9d66d8a1 Mon Sep 17 00:00:00 2001 From: neuronull <9162534+neuronull@users.noreply.github.com> Date: Mon, 3 Nov 2025 11:00:37 -0700 Subject: [PATCH] Revert "check double initialization" This reverts commit 8488b8a6130e69a31497c7c0148dde256f2c9667. --- .../src/autofill/main/main-desktop-autotype.service.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/apps/desktop/src/autofill/main/main-desktop-autotype.service.ts b/apps/desktop/src/autofill/main/main-desktop-autotype.service.ts index 3459ccd7fa6..c26e24de6c8 100644 --- a/apps/desktop/src/autofill/main/main-desktop-autotype.service.ts +++ b/apps/desktop/src/autofill/main/main-desktop-autotype.service.ts @@ -21,11 +21,6 @@ export class MainDesktopAutotypeService { } init() { - if (this.isInitialized) { - this.logService.warning("MainDesktopAutotypeService already initialized."); - return; - } - ipcMain.handle(AUTOTYPE_IPC_CHANNELS.INIT, () => { this.init(); });