diff --git a/app/components/app/patient/_common/input-patient-name.vue b/app/components/app/patient/_common/input-name.vue similarity index 52% rename from app/components/app/patient/_common/input-patient-name.vue rename to app/components/app/patient/_common/input-name.vue index fbc57351..933612d3 100644 --- a/app/components/app/patient/_common/input-patient-name.vue +++ b/app/components/app/patient/_common/input-name.vue @@ -3,15 +3,12 @@ import type { FormErrors } from '~/types/error' import FieldGroup from '~/components/pub/my-ui/form/field-group.vue' import Field from '~/components/pub/my-ui/form/field.vue' import Label from '~/components/pub/my-ui/form/label.vue' -import Select from '~/components/pub/my-ui/form/select.vue' import { Input } from '~/components/pub/ui/input' import { cn } from '~/lib/utils' defineProps<{ - fieldNameAlias: string fieldNameInput: string placeholder: string - labelForAlias: string labelForInput: string errors?: FormErrors class?: string @@ -21,54 +18,9 @@ defineProps<{ maxLength?: number isRequired?: boolean }>() - -const aliasOptions = [ - { label: 'An', value: 'an' }, - { label: 'By.Ny', value: 'byny' }, - { label: 'Nn', value: 'nn' }, - { label: 'Ny', value: 'ny' }, - { label: 'Tn', value: 'tn' }, -]