Skip to content

Commit

Permalink
Fixed linting issues
Browse files Browse the repository at this point in the history
Signed-off-by: Hynek Mlnarik <[email protected]>
  • Loading branch information
hmlnarik committed Jul 15, 2024
1 parent d76a195 commit 25b198e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/apps/admin-ui/src/clients/credentials/SignedJWT.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 25b198e

Please sign in to comment.