Fix localStorage usage

This commit is contained in:
Andrew Bastin
2021-06-21 00:27:45 -04:00
parent 257e2db651
commit f4f29b8520
10 changed files with 81 additions and 38 deletions

View File

@@ -39,9 +39,6 @@ export default {
},
}
},
beforeMount() {
initializeFirebase()
},
computed: {
statusCode() {
return (this.error && this.error.statusCode) || 500
@@ -50,6 +47,9 @@ export default {
return this.error.message || this.$t("something_went_wrong")
},
},
beforeMount() {
initializeFirebase()
},
methods: {
reloadApplication() {