summaryrefslogtreecommitdiffhomepage
path: root/app/lib/backend.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/backend.js')
-rw-r--r--app/lib/backend.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/lib/backend.js b/app/lib/backend.js
index 7d94baa5a5..55560cca2c 100644
--- a/app/lib/backend.js
+++ b/app/lib/backend.js
@@ -31,7 +31,7 @@ class BackendImpl {
if(account.startsWith('1111')) {
resolve(true);
} else {
- reject(new Error("Invalid account number."));
+ reject(new Error('Invalid account number.'));
}
}, 2000);
});
@@ -73,4 +73,4 @@ export default class Backend {
return getImpl(this).logout();
}
-};
+}