Ensure key
prop of credentials list is unique (#26410)
Closes #26409 Signed-off-by: Jon Koops <jonkoops@gmail.com>
This commit is contained in:
parent
73e5c8290f
commit
4c5bf596aa
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue