From 4a0ac562972162acbcd30936227c22e6f4b0a8de Mon Sep 17 00:00:00 2001 From: choi Date: Thu, 16 Jan 2025 16:46:06 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8A=B8=EB=9E=99=20=EA=B4=80=EB=A0=A8=20?= =?UTF-8?q?=EB=A1=9C=EC=A7=81=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/albums/TrackList.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/albums/TrackList.tsx b/src/components/albums/TrackList.tsx index 265ac1b..1bb12e7 100644 --- a/src/components/albums/TrackList.tsx +++ b/src/components/albums/TrackList.tsx @@ -1,7 +1,7 @@ "use client"; import { cn } from "@/lib/utils"; -import { Play, Music, Loader2, Pause } from "lucide-react"; +import { Play, Music, Loader2 } from "lucide-react"; import { formatDuration } from "@/lib/format"; import { useEffect, useState } from "react"; import { useInView } from "react-intersection-observer"; @@ -34,8 +34,6 @@ export function TrackList({ tracks: initialTracks, albumId, artistId, - album, - artist, }: TrackListProps) { const { isAuthenticated } = useAuth(); const { user } = useUser();