don't log auth key on startup, lol

This commit is contained in:
Evan Simkowitz 2024-08-26 13:53:04 -07:00
parent 06ed17382e
commit 7648eaf7e9
No known key found for this signature in database

View File

@ -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;
});