Skip to content

Commit

Permalink
Add missing key attribute in Passenger showcase form
Browse files Browse the repository at this point in the history
  • Loading branch information
fturmel committed Oct 21, 2023
1 parent f8a5782 commit f205889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PassengerShowcaseForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ const PassengerShowcaseForm = () => {
<option value="">Select a video</option>

{selectedTrack?.chapters?.map((node) => (
<optgroup label={node.title}>
<optgroup label={node.title} key={node.title}>
{node.videos.map((video) => {
let label = video.title;
if (label.length > 50) {
Expand Down

0 comments on commit f205889

Please sign in to comment.