/* eslint-disable */ // @ts-nocheck import { FormGroup, Grid, GridItem, TextInput } from "../../../../shared/@patternfly/react-core"; import { useFormContext } from "react-hook-form"; import { useTranslation } from "react-i18next"; import { FormAccess } from "../../../components/form/FormAccess"; import { KeyValueInput } from "../../../components/key-value-form/KeyValueInput"; import { SCIM_ANNOTATION_KEY } from "./AttributeScimSettings"; import { KeySelect } from "./KeySelect"; import { ValueSelect } from "./ValueSelect"; import "../../realm-settings-section.css"; export const AttributeAnnotations = () => { const { t } = useTranslation(); const { register } = useFormContext(); return ( ( )} ValueComponent={(props) => props.keyValue === "inputType" ? ( ) : ( ) } /> ); };