remove console.log

This commit is contained in:
hay-kot 2021-05-29 15:27:40 -08:00
commit d1ae6357a3

View file

@ -151,7 +151,6 @@ export default {
methods: { methods: {
async refreshProfile() { async refreshProfile() {
this.user = await api.users.self(); this.user = await api.users.self();
console.log(this.user);
}, },
openAvatarPicker() { openAvatarPicker() {
this.showAvatarPicker = true; this.showAvatarPicker = true;
@ -164,7 +163,6 @@ export default {
return; return;
} }
this.loading = true; this.loading = true;
console.log(this.user);
const response = await api.users.update(this.user); const response = await api.users.update(this.user);
if (response) { if (response) {
this.$store.commit("setToken", response.data.access_token); this.$store.commit("setToken", response.data.access_token);