Skip to content

Commit

Permalink
fix: key prop in letter comp
Browse files Browse the repository at this point in the history
  • Loading branch information
surajgoraya committed Aug 23, 2024
1 parent a0965d6 commit c26a940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/committees/program/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function displayNames(hashID, names) {
firstLetterOfName = e.name[0];
letterComp = (
<Letter
key={`${hashID}-names`}
key={`${hashID}-names-${firstLetterOfName}-top`}
letter={firstLetterOfName}
hashID={`${hashID}-names`}
className={"mb-4 mt-8"}
Expand Down

0 comments on commit c26a940

Please sign in to comment.