This commit is contained in:
2025-10-31 13:55:38 +11:00
parent 4b798d6d9b
commit 8678cb3d7f
2 changed files with 20 additions and 17 deletions
@@ -289,9 +289,7 @@ export default function DownloadCenter({ onPlayMusic }: DownloadCenterProps) {
</Button>
</div>
<div className="space-y-2">
{autoJobs.map((job) => {
return (
{autoJobs.map((job) => (
<div
key={job.id}
className="flex items-center justify-between p-3 rounded-lg border hover:bg-accent transition-colors gap-2"
@@ -362,8 +360,7 @@ export default function DownloadCenter({ onPlayMusic }: DownloadCenterProps) {
</Button>
</div>
</div>
);
})}
))}
</div>
</div>
)}