From 3316dd00a9ecd4546523f5d73765f72168b73515 Mon Sep 17 00:00:00 2001
From: "Mr. Stallion" <mrstallion@nobody.nowhere.fauxdomain.ext>
Date: Sun, 3 Sep 2023 18:15:31 -0700
Subject: [PATCH] minor

---
 electron/secure-store.ts | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/electron/secure-store.ts b/electron/secure-store.ts
index 674ca83..4638c88 100644
--- a/electron/secure-store.ts
+++ b/electron/secure-store.ts
@@ -9,9 +9,10 @@ export class SecureStore {
       accessPropertiesByDotNotation: true,
       clearInvalidConfig: true,
       name: storeName,
+      projectName: storeName,
       watch: true,
       encryptionKey: obfuscationKey // obfuscation only
-    });
+    } as any);
   }
 
   private getKey(domain: string, account: string): string {