diff --git a/core/core-frontend/src/components/custom-password/src/CustomPassword.vue b/core/core-frontend/src/components/custom-password/src/CustomPassword.vue index 0feec96f3c..0f151ad3c5 100644 --- a/core/core-frontend/src/components/custom-password/src/CustomPassword.vue +++ b/core/core-frontend/src/components/custom-password/src/CustomPassword.vue @@ -2,7 +2,6 @@ import { useAttrs, computed } from 'vue' import icon_visible_outlined from '@/assets/svg/icon_visible_outlined.svg' import icon_invisible_outlined from '@/assets/svg/icon_invisible_outlined.svg' -import { hIcon } from '@/components/icon-custom' const attrs = useAttrs() const props = defineProps(['modelValue']) const emits = defineEmits(['update:modelValue']) @@ -14,15 +13,12 @@ const value = computed({ emits('update:modelValue', value) } }) - -const iconView = hIcon(icon_visible_outlined) -const iconHide = hIcon(icon_invisible_outlined)