remove console.logs

This commit is contained in:
Hayden 2021-02-21 16:57:42 -09:00
commit 485ebd2e3a
3 changed files with 2 additions and 10 deletions

View file

@ -33,7 +33,6 @@ export default {
colors: colors, colors: colors,
}; };
let response = await apiReq.put(settingsURLs.updateTheme(themeName), body); let response = await apiReq.put(settingsURLs.updateTheme(themeName), body);
console.log(response.data);
return response.data; return response.data;
}, },

View file

@ -99,7 +99,6 @@ export default {
methods: { methods: {
async login() { async login() {
let key = await api.login(this.user.email, this.user.password); let key = await api.login(this.user.email, this.user.password);
console.log(key);
}, },
}, },
}; };

View file

@ -85,9 +85,7 @@ export default {
], ],
}; };
}, },
mounted() { mounted() {},
console.log(this.loggedIn);
},
computed: { computed: {
loggedIn() { loggedIn() {
return this.$store.getters.getIsLoggedIn; return this.$store.getters.getIsLoggedIn;
@ -100,11 +98,7 @@ export default {
} }
}, },
}, },
watch: {
loggedIn() {
console.log(this.loggedIn);
},
},
methods: { methods: {
openLoginDialog() { openLoginDialog() {
this.$refs.loginDialog.open(); this.$refs.loginDialog.open();