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 {