Skip to content

Commit 18a01c8

Browse files
fix: add key to list (#95)
1 parent 8910cab commit 18a01c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,8 @@ export const Footer = memo(
285285
)}
286286
>
287287
<ul>
288-
{subPartnersLogos.map(logo => (
289-
<li>
288+
{subPartnersLogos.map((logo, i) => (
289+
<li key={i}>
290290
<a
291291
href={logo.href}
292292
className={cx(

0 commit comments

Comments
 (0)