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