From e5f2206b8d2e58a3518fcbb4af8c4969d04bd42a Mon Sep 17 00:00:00 2001 From: neuronull <9162534+neuronull@users.noreply.github.com> Date: Wed, 29 Oct 2025 15:47:33 -0600 Subject: [PATCH] fix claude suggestion? --- apps/desktop/src/autofill/models/ipc-channels.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/desktop/src/autofill/models/ipc-channels.ts b/apps/desktop/src/autofill/models/ipc-channels.ts index 5fea2daf0cf..1b7e6e08f85 100644 --- a/apps/desktop/src/autofill/models/ipc-channels.ts +++ b/apps/desktop/src/autofill/models/ipc-channels.ts @@ -1,9 +1,9 @@ export const AUTOTYPE_IPC_CHANNELS = { - INIT: "autofill.initAutotype", - INITIALIZED: "autofill.autotypeIsInitialized", - TOGGLE: "autofill.toggleAutotype", - CONFIGURE: "autofill.configureAutotype", - LISTEN: "autofill.listenAutotypeRequest", - EXECUTION_ERROR: "autofill.autotypeExecutionError", - EXECUTE: "autofill.executeAutotype", + INIT: "autofill.initAutotype" as string, + INITIALIZED: "autofill.autotypeIsInitialized" as string, + TOGGLE: "autofill.toggleAutotype" as string, + CONFIGURE: "autofill.configureAutotype" as string, + LISTEN: "autofill.listenAutotypeRequest" as string, + EXECUTION_ERROR: "autofill.autotypeExecutionError" as string, + EXECUTE: "autofill.executeAutotype" as string, } as const;