/* eslint-disable */
// @ts-nocheck
import { useTranslation } from "react-i18next";
import { DefaultSwitchControl } from "../../components/SwitchControl";
import { FormGroup } from "../../../shared/@patternfly/react-core";
import { useFormContext, Controller } from "react-hook-form";
import { TimeSelector } from "../../components/time-selector/TimeSelector";
import { SelectControl, HelpItem } from "../../../shared/keycloak-ui-shared";
import { useServerInfo } from "../../context/server-info/ServerInfoProvider";
export const JWTAuthorizationGrantAssertionSettings = () => {
const { t } = useTranslation();
const { cryptoInfo } = useServerInfo();
const { control } = useFormContext();
const asymmetricAlgorithms =
cryptoInfo?.clientSignatureAsymmetricAlgorithms ?? [];
return (
<>
}
>
(
)}
/>
({
key: alg,
value: alg,
})),
]}
controller={{
defaultValue: "",
}}
/>
>
);
};