Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Hilde committed Nov 23, 2022
1 parent e631005 commit 4160a6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/TrackListGenerator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ export default function TrackListGenerator({
{title}
</Typography>
<ol style={{ paddingLeft: getListPadding() }}>
{tracks.map((track) => (
<li style={{ fontSize: bodyFontSize }} key={track}>
{tracks.map((track, index) => (
<li style={{ fontSize: bodyFontSize }} key={index.toString() + track}>
<Typography variant="body1" sx={{ fontSize: bodyFontSize }}>
{track}
</Typography>
Expand Down

0 comments on commit 4160a6d

Please sign in to comment.