refactor: remove unused imports and redundant code in MusicPlayer and AppLayout components
Some checks failed
Frontend CI / lint (push) Failing after 5m47s
Frontend CI / build (push) Has been skipped

This commit is contained in:
JSC
2025-07-08 17:12:14 +02:00
parent d85e47ebd1
commit 1f997daf24
4 changed files with 3 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
import React, { useState, useEffect } from 'react';
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Card, CardContent } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import { Play, Square, Volume2, Plus, Clock, Weight } from 'lucide-react';
import { Play, Square, Plus, Clock, Weight } from 'lucide-react';
import { toast } from 'sonner';
import { apiService } from '@/services/api';
import { AddUrlDialog } from '@/components/AddUrlDialog';