Skip to content

Commit

Permalink
Revert changes to CardImage props
Browse files Browse the repository at this point in the history
  • Loading branch information
Bergbok committed May 3, 2024
1 parent 7e8d550 commit e726cb9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CustomApps/playlist-tags/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playlist-tags",
"version": "1.6.8",
"version": "1.6.9",
"private": true,
"scripts": {
"build": "spicetify-creator",
Expand Down
10 changes: 8 additions & 2 deletions CustomApps/playlist-tags/src/components/spotify_card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,14 @@ function SpotifyCard(props: SpotifyCardProps): React.ReactElement<HTMLDivElement
headerText={header}
renderCardImage={() => (
<CardImage
src={imageUrl}
size={640}/>
images={[
{
height: 640,
url: imageUrl,
width: 640,
},
]}
isCircular={type === "artist"}/>
)}
renderSubHeaderContent={() => (
<React.Fragment>
Expand Down

0 comments on commit e726cb9

Please sign in to comment.