We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 283df5f commit fce5deaCopy full SHA for fce5dea
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/users/components/index.tsx
@@ -81,10 +81,13 @@ export function InAppWalletUsersPageContent(
81
}
82
return (
83
<div className="space-y-1">
84
- {externalWallets.slice(0, 2).map((account, index) => {
+ {externalWallets.slice(0, 2).map((account) => {
85
const address = account.details?.address as string | undefined;
86
return address ? (
87
- <div key={`external-${index}`} className="text-xs">
+ <div
88
+ key={`external-${address}-${account.details?.id}`}
89
+ className="text-xs"
90
+ >
91
<WalletAddress address={address} client={props.client} />
92
</div>
93
) : null;
0 commit comments