[bug] fix cannot delete profile

This commit is contained in:
Avris 2020-12-22 13:46:12 +01:00
parent 5d02d665df
commit 10918ba020
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
await this.$confirm(this.$t('profile.deleteConfirm'), 'danger');
this.deleting = true;
const response = await this.$axios.$post(`/profile/delete/${locale}`);
const response = await this.$axios.$post(`/profile/delete`);
this.deleting = false;
this.$emit('update', response);
},