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 2768b2c commit 39eb076Copy full SHA for 39eb076
app/components/UI/Rewards/components/Tabs/OverviewTab/WaysToEarn/SwapSupportedNetworksSection.tsx
@@ -131,8 +131,8 @@ export const SwapSupportedNetworksSection = () => {
131
flexDirection={BoxFlexDirection.Row}
132
twClassName="flex-wrap -mx-2 -my-1"
133
>
134
- {supportedNetworks.map((network, index) => (
135
- <Box key={index} twClassName="basis-1/2 px-2 py-1">
+ {supportedNetworks.map((network) => (
+ <Box key={network.chainId} twClassName="basis-1/2 px-2 py-1">
136
<SwapSupportedNetworkItem network={network} />
137
</Box>
138
))}
0 commit comments