From b8df2e314b98d96eadef97135e0ae20109ffe4c7 Mon Sep 17 00:00:00 2001 From: Colton Hurst Date: Thu, 29 May 2025 11:18:58 -0400 Subject: [PATCH] PM-21845: Add missed comments --- apps/desktop/src/entry.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/entry.ts b/apps/desktop/src/entry.ts index 7f55df6f173..fe7c4612316 100644 --- a/apps/desktop/src/entry.ts +++ b/apps/desktop/src/entry.ts @@ -3,7 +3,7 @@ import * as path from "path"; import { app } from "electron"; -import { autotype } from "@bitwarden/desktop-napi" +import { autotype } from "@bitwarden/desktop-napi"; if ( process.platform === "darwin" && @@ -42,8 +42,10 @@ if ( // eslint-disable-next-line const Main = require("./main").Main; - let r = autotype.registerHotkey(); + const r = autotype.registerHotkey(); + // eslint-disable-next-line no-console console.log("registerHotkey(): "); + // eslint-disable-next-line no-console console.log(r); const main = new Main();