Skip to content

Commit

Permalink
Merge pull request #80 from moonlight-mod/kasimir/moonbase-uid-key
Browse files Browse the repository at this point in the history
Fix moonbase card duplication issue
  • Loading branch information
NotNite authored Oct 7, 2024
2 parents ea8f858 + e940d51 commit 2c2257b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default function ExtensionsPage() {
setSelectedTags={setSelectedTags}
/>
{filtered.map((ext) => (
<ExtensionCard uniqueId={ext.uniqueId} key={ext.id} />
<ExtensionCard uniqueId={ext.uniqueId} key={ext.uniqueId} />
))}
</>
);
Expand Down

0 comments on commit 2c2257b

Please sign in to comment.