diff --git a/lib/www/client/source/src/App.vue b/lib/www/client/source/src/App.vue index b65b0d7..96b18ba 100644 --- a/lib/www/client/source/src/App.vue +++ b/lib/www/client/source/src/App.vue @@ -54,7 +54,7 @@ export default { computed: { snackText () { return this.$store.state.snack.snackText }, snackColour () { return this.$store.state.snack.snackColour }, - ...mapGetters(["user", "serverEvent"]) + ...mapGetters(["serverEvent"]) }, watch: { @@ -96,9 +96,7 @@ export default { // Local Storage values are always strings this.$vuetify.theme.dark = localStorage.getItem("darkTheme") == "true"; await this.setCredentials(); - if (this.user) { - this.refreshProjects(); - } + this.refreshProjects(); } };