We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb34d62 commit 9cf7303Copy full SHA for 9cf7303
wormhole-connect/src/views/v2/Bridge/AssetPicker/ChainList.tsx
@@ -115,9 +115,8 @@ const ChainList = (props: Props) => {
115
return (
116
<List component={Stack} direction="row">
117
{topChains.map((chain: ChainConfig) => (
118
- <Tooltip title={chain.displayName}>
+ <Tooltip key={chain.key} title={chain.displayName}>
119
<ListItemButton
120
- key={chain.key}
121
selected={selectedChainConfig?.key === chain.key}
122
className={classes.chainButton}
123
onClick={() => onChainSelect(chain.key)}
0 commit comments