diff --git a/app/components/AudioPlayer.tsx b/app/components/AudioPlayer.tsx
index 85019ac..7b98359 100644
--- a/app/components/AudioPlayer.tsx
+++ b/app/components/AudioPlayer.tsx
@@ -2,7 +2,7 @@
import React, { useEffect, useRef, useState } from 'react';
import Image from 'next/image';
import { useAudioPlayer } from '@/app/components/AudioPlayerContext';
-import { FaPlay, FaPause, FaVolumeHigh, FaForward, FaBackward, FaExpand, FaCompress, FaVolumeXmark } from "react-icons/fa6";
+import { FaPlay, FaPause, FaVolumeHigh, FaForward, FaBackward, FaCompress, FaVolumeXmark } from "react-icons/fa6";
import ColorThief from '@neutrixs/colorthief';
import { Progress } from '@/components/ui/progress';
import { useToast } from '@/hooks/use-toast';
@@ -15,7 +15,6 @@ export const AudioPlayer: React.FC = () => {
const [showVolumeSlider, setShowVolumeSlider] = useState(false);
const [volume, setVolume] = useState(1);
const [isClient, setIsClient] = useState(false);
- const [isExpanded, setIsExpanded] = useState(false);
const [isMinimized, setIsMinimized] = useState(false);
const audioCurrent = audioRef.current;
const { toast } = useToast();
@@ -160,21 +159,29 @@ export const AudioPlayer: React.FC = () => {
// Mini player (collapsed state)
if (isMinimized) {
return (
-
+
setIsMinimized(false)}
>
-
+
+
+
+
+ {currentTrack.name}
+
+
+
{currentTrack.artist}
+