From 61b0dcc5fb1161b7f684425cbaad77e3cd6fc29c Mon Sep 17 00:00:00 2001 From: LukeGus Date: Mon, 6 Oct 2025 09:24:21 -0500 Subject: [PATCH] Cleanup OIDC pr and run prettier --- src/backend/utils/user-crypto.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/backend/utils/user-crypto.ts b/src/backend/utils/user-crypto.ts index 05323b9f..884f08ca 100644 --- a/src/backend/utils/user-crypto.ts +++ b/src/backend/utils/user-crypto.ts @@ -94,7 +94,9 @@ class UserCrypto { DEK.fill(0); DEK = this.decryptDEK(storedEncryptedDEK, systemKey); } else if (!storedEncryptedDEK) { - throw new Error("Failed to store and retrieve user encryption key."); + throw new Error( + "Failed to store and retrieve user encryption key.", + ); } } finally { systemKey.fill(0);