Skip to content

Commit 3466567

Browse files
committed
Fix map key
1 parent 6d8a8f3 commit 3466567

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/Sponsor/patron.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const PatronList = () => {
4040
{patrons
4141
.sort((a, b) => a.sequence - b.sequence)
4242
.map((p) => (
43-
<PatronContainer>
43+
<PatronContainer key={`${p.name}-${p.sequence}`}>
4444
<h4>{p.name}</h4>
4545
<div>{p.message}</div>
4646
</PatronContainer>

0 commit comments

Comments
 (0)