Skip to content

Commit

Permalink
Ensure key prop of credentials list is unique (keycloak#26410)
Browse files Browse the repository at this point in the history
Closes keycloak#26409

Signed-off-by: Jon Koops <[email protected]>
  • Loading branch information
jonkoops authored Jan 23, 2024
1 parent 73e5c82 commit 4c5bf59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/apps/account-ui/src/account-security/SigningIn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const SigningIn = () => {
<Page title={t("signingIn")} description={t("signingInDescription")}>
{credentials.map((container) => (
<PageSection
key={container.category}
key={container.category + container.type}
variant="light"
className="pf-u-px-0"
>
Expand Down

0 comments on commit 4c5bf59

Please sign in to comment.