{newProjectButton}
diff --git a/app/components/Loader.js b/app/components/Loader.js
index f48e8d7..9814d12 100644
--- a/app/components/Loader.js
+++ b/app/components/Loader.js
@@ -1,5 +1,5 @@
import React from 'react';
export default function Loader() {
- return
;
+ return
;
}
diff --git a/app/components/LoaderPage.js b/app/components/LoaderPage.js
index c43ff5a..147e6fd 100644
--- a/app/components/LoaderPage.js
+++ b/app/components/LoaderPage.js
@@ -3,9 +3,15 @@ import React from 'react';
import Loader from './Loader';
import PageContainer from './PageContainer';
+import styles from './LoaderPage.css';
+
export default function LoaderPage(props) {
return (
-
+
);
diff --git a/app/core/Account.js b/app/core/Account.js
index 7f21681..a00be03 100644
--- a/app/core/Account.js
+++ b/app/core/Account.js
@@ -112,13 +112,14 @@ export default class Account {
async getInfo() {
const key = this.key.toString('hex');
+ const { writable } = this;
try {
const raw = await this.archive.readFile(ACCOUNT_INFO_FILE, 'utf8');
const parsed = JSON.parse(raw);
- return { name: key, ...parsed, key };
+ return { name: key, ...parsed, key, writable };
} catch (e) {
console.error(e);
- return { name: key, key };
+ return { name: key, key, writable };
}
}