Skip to content

Commit a539f3a

Browse files
committed
fix: update key for link profiles
1 parent 9962b81 commit a539f3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/thirdweb/src/react/web/ui/ConnectWallet/screens/LinkedProfilesScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export function LinkedProfilesScreen(props: {
107107
?.filter((profile) => profile.type !== "guest")
108108
.map((profile) => (
109109
<LinkedProfile
110-
key={`${profile.type}-${getProfileDisplayName(profile)}`}
110+
key={`${JSON.stringify(profile)}`}
111111
enableUnlinking={connectedProfiles.length > 1}
112112
profile={profile}
113113
client={props.client}

0 commit comments

Comments
 (0)