diff --git a/apps/desktop/src/autofill/models/ipc-channels.ts b/apps/desktop/src/autofill/models/ipc-channels.ts index 1b7e6e08f85..5fea2daf0cf 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" 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, + INIT: "autofill.initAutotype", + INITIALIZED: "autofill.autotypeIsInitialized", + TOGGLE: "autofill.toggleAutotype", + CONFIGURE: "autofill.configureAutotype", + LISTEN: "autofill.listenAutotypeRequest", + EXECUTION_ERROR: "autofill.autotypeExecutionError", + EXECUTE: "autofill.executeAutotype", } as const;