Skip to content

Commit

Permalink
Map key
Browse files Browse the repository at this point in the history
  • Loading branch information
SabreML committed Feb 21, 2024
1 parent a9f6815 commit eea7fd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tgui/packages/tgui/interfaces/ListInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ export const ListInput = (props) => {
}}
/>
}>
{displayedArray.map((button) => (
{displayedArray.map((button, i) => (
<Button
key={button}
key={i}
fluid
color="transparent"
id={button}
Expand Down

0 comments on commit eea7fd4

Please sign in to comment.