Fixed linting issues
Signed-off-by: Hynek Mlnarik <hmlnarik@redhat.com>
This commit is contained in:
parent
d76a195cba
commit
25b198ed51
1 changed files with 2 additions and 2 deletions
|
@ -12,8 +12,8 @@ export const SignedJWT = ({ clientAuthenticatorType }: SignedJWTProps) => {
|
|||
const { cryptoInfo } = useServerInfo();
|
||||
const providers =
|
||||
clientAuthenticatorType === "client-jwt"
|
||||
? cryptoInfo?.clientSignatureAsymmetricAlgorithms ?? []
|
||||
: cryptoInfo?.clientSignatureSymmetricAlgorithms ?? [];
|
||||
? (cryptoInfo?.clientSignatureAsymmetricAlgorithms ?? [])
|
||||
: (cryptoInfo?.clientSignatureSymmetricAlgorithms ?? []);
|
||||
|
||||
const { t } = useTranslation();
|
||||
|
||||
|
|
Loading…
Reference in a new issue