Skip to content

Commit

Permalink
#30 update top5 index
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasBuchfink committed Feb 17, 2023
1 parent 3cf6acd commit e7e8d09
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/client/blocks/spotify_Music.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,11 @@ const Spotify: FC<BlockProps> = ({ gridRef, extension, size, isEditable }) => {
.filter((track, index) => index !== 0)
.map((track: any, index) => (
<List.Item
index={index + 1}
index={index + 2}
type={track.type}
title={track.title}
subtitle={track.subtitle}
image={track.image}
count={
track.count && {
value: track.count.value,
}
}
actions={{ open: { url: track.link } }}
key={track.title + index}
/>
Expand Down

0 comments on commit e7e8d09

Please sign in to comment.