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;