diff --git a/js/libs/ui-shared/src/user-profile/SelectComponent.tsx b/js/libs/ui-shared/src/user-profile/SelectComponent.tsx index 89ad2677861..6a2222a6c43 100644 --- a/js/libs/ui-shared/src/user-profile/SelectComponent.tsx +++ b/js/libs/ui-shared/src/user-profile/SelectComponent.tsx @@ -69,13 +69,13 @@ export const SelectComponent = (props: UserProfileFieldProps) => { isDisabled={attribute.readOnly} required={isRequired} > - {options.map((option) => ( + {["", ...options].map((option) => ( - {label(option)} + {option ? label(option) : t("choose")} ))}