Skip to content

Commit

Permalink
fix: add missing iterator key
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-acosta committed Jun 21, 2024
1 parent 765dcf0 commit 07381f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/InstallStepper/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const InstallStepper = ({

const input_groups = app.input_config.input_groups || [];
const stepContent = input_groups.map((group, idx) => (
<GroupContent group={group} idx={idx} />
<GroupContent key={idx} group={group} idx={idx} />
));

const steps = input_groups.map((group, idx) => (
Expand Down

0 comments on commit 07381f6

Please sign in to comment.