Skip to content

Commit

Permalink
Add missing key in iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddasol committed Dec 19, 2024
1 parent a0d87f9 commit ec98d04
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ export const ConflictingMissionDecksDialog = ({

const MissionDeckNamesList = (
<List>
{missionDeckNames.map((deckName) => (
<List.Item>
{missionDeckNames.map((deckName, index) => (
<List.Item key={index}>
<b>{deckName}</b>
</List.Item>
))}
Expand Down

0 comments on commit ec98d04

Please sign in to comment.