diff options
Diffstat (limited to 'apps/settings/src/components/PersonalInfo/BiographySection/Biography.vue')
-rw-r--r-- | apps/settings/src/components/PersonalInfo/BiographySection/Biography.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/settings/src/components/PersonalInfo/BiographySection/Biography.vue b/apps/settings/src/components/PersonalInfo/BiographySection/Biography.vue index ffe0029db8d..48c2bf4ff77 100644 --- a/apps/settings/src/components/PersonalInfo/BiographySection/Biography.vue +++ b/apps/settings/src/components/PersonalInfo/BiographySection/Biography.vue @@ -47,6 +47,7 @@ import debounce from 'debounce' import { ACCOUNT_PROPERTY_ENUM } from '../../../constants/AccountPropertyConstants' import { savePrimaryAccountProperty } from '../../../service/PersonalInfo/PersonalInfoService' +import logger from '../../../logger' export default { name: 'Biography', @@ -105,7 +106,7 @@ export default { setTimeout(() => { this.showCheckmarkIcon = false }, 2000) } else { showError(errorMessage) - this.logger.error(errorMessage, error) + logger.error(errorMessage, error) this.showErrorIcon = true setTimeout(() => { this.showErrorIcon = false }, 2000) } |