diff options
Diffstat (limited to 'apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue')
-rw-r--r-- | apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue b/apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue index c80d1a36658..1d20f900e26 100644 --- a/apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue +++ b/apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue @@ -71,7 +71,6 @@ <script> import debounce from 'debounce' -import { showError } from '@nextcloud/dialogs' import AlertCircle from 'vue-material-design-icons/AlertCircleOutline.vue' import AlertOctagon from 'vue-material-design-icons/AlertOctagon' @@ -80,7 +79,7 @@ import Check from 'vue-material-design-icons/Check' import HeaderBar from '../shared/HeaderBar.vue' import { savePrimaryAccountProperty } from '../../../service/PersonalInfo/PersonalInfoService.js' -import logger from '../../../logger.js' +import { handleError } from '../../../utils/handlers.js' export default { name: 'AccountPropertySection', @@ -196,8 +195,7 @@ export default { setTimeout(() => { this.showCheckmarkIcon = false }, 2000) } else { this.$emit('update:value', this.initialValue) - showError(errorMessage) - logger.error(errorMessage, error) + handleError(error, errorMessage) this.showErrorIcon = true setTimeout(() => { this.showErrorIcon = false }, 2000) } |