diff --git a/emain/authkey.ts b/emain/authkey.ts index 128730945..8b24eea0f 100644 --- a/emain/authkey.ts +++ b/emain/authkey.ts @@ -8,8 +8,6 @@ const AuthKeyHeader = "X-AuthKey"; export const AuthKeyEnv = "AUTH_KEY"; export const AuthKey = crypto.randomUUID(); -console.log("authKey", AuthKey); - ipcMain.on("get-auth-key", (event) => { event.returnValue = AuthKey; });