Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
huilensolis committed Oct 26, 2023
1 parent 34ad2e2 commit 70f6b78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/(site)/song/[id]/components/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function SongDetails({ songId }: { songId: string }) {
{song && (
<SongCard
song={song}
leftSide={
rightSide={
<figure className="aspect-square h-full w-[calc(0.5rem*2+4rem)] p-2 hidden group-hover:md:flex items-center justify-center">
<div className="h-3/4 w-3/4 bg-green-500 rounded-full transition-all delay-75 flex justify-center items-center hover:scale-105">
<TriangleIcon className="fill-neutral-900 transition-all delay-75 w-6 h-6 text-center flex justify-center items-center" />
Expand Down
2 changes: 1 addition & 1 deletion src/components/library/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function Library({ songs }: { songs: Song[] }) {
<li key={song.id} className="w-full">
<SongCard
song={song}
leftSide={
rightSide={
<figure className="aspect-square h-full w-[calc(0.5rem*2+4rem)] p-2 hidden group-hover:md:flex items-center justify-center">
<div className="h-3/4 w-3/4 bg-green-500 rounded-full transition-all delay-75 flex justify-center items-center hover:scale-105">
<TriangleIcon className="fill-neutral-900 transition-all delay-75 w-6 h-6 text-center flex justify-center items-center" />
Expand Down
2 changes: 1 addition & 1 deletion src/components/search-songs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export function SearchSongs() {
<li key={song.id}>
<SongCard
song={song}
leftSide={
rightSide={
<LikeButton songId={song.id} />
}
/>
Expand Down

0 comments on commit 70f6b78

Please sign in to comment.