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,
};
let response = await apiReq.put(settingsURLs.updateTheme(themeName), body);
console.log(response.data);
return response.data;
},

View file

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

View file

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