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 e725107 commit ea2f20e
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 ea2f20e

Please sign in to comment.