fixed account ui when not enabled

This commit is contained in:
Danny Coates 2018-11-16 10:01:53 -08:00
parent 660a1947cc
commit 9989f944c3
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB

View File

@ -52,7 +52,9 @@ class Account extends Component {
createElement() {
if (!this.enabled) {
return null;
return html`
<div></div>
`;
}
const user = this.state.user;
const translate = this.state.translate;