Skip to content

Commit 925f02b

Browse files
[internal] Fix console regression in dev mode
1 parent f016483 commit 925f02b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/components/home/GoldSponsors.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ export default function GoldSponsors() {
165165
</Grid>
166166
</Grid>
167167
<Box sx={{ maxWidth: 1000, mt: { xs: 2, md: 3 } }}>
168-
{BACKLINKs.map((item) => (
169-
<BacklinkSponsor key={item.name} item={item} />
168+
{BACKLINKs.map((item, index) => (
169+
<BacklinkSponsor key={index} item={item} />
170170
))}
171171
</Box>
172172
</div>

0 commit comments

Comments
 (0)