Skip to content

Commit b14a441

Browse files
committed
fix: key issue in login component
1 parent c6ce3cc commit b14a441

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/login/Login.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ const Login = () => {
125125
{loginList
126126
.filter((sso) => sso.active)
127127
.map((item) => (
128-
<div className="login-button">
128+
<div className="login-button" key={item.name}>
129129
<Button
130130
variant={ButtonVariantType.secondary}
131131
text={`Login with ${item.name}`}

0 commit comments

Comments
 (0)