Fix bad initial JSON in server/storage/accounts.ts

Change-Id: I6ac54e716b9d3df31c23926b6c9c6a9d063f37cf
diff --git a/server/src/routers/auth-router.ts b/server/src/routers/auth-router.ts
index 01e0ad1..6f71ac6 100644
--- a/server/src/routers/auth-router.ts
+++ b/server/src/routers/auth-router.ts
@@ -59,7 +59,10 @@
 
     const hashedPassword = await argon2.hash(password, { type: argon2.argon2id });
 
-    const accountDetails: Partial<AccountDetails> = { 'Account.archivePassword': password };
+    const accountDetails: Partial<AccountDetails> = {
+      // TODO: enable encrypted archives
+      // 'Account.archivePassword': password
+    };
     if (isJams) {
       accountDetails['Account.managerUri'] = 'https://jams.savoirfairelinux.com/';
       accountDetails['Account.managerUsername'] = username;