Index: frontend/src/components/SongItem.tsx
===================================================================
--- frontend/src/components/SongItem.tsx	(revision 1579b4f9eaf503a14012d471db11e16e645306e3)
+++ frontend/src/components/SongItem.tsx	(revision f5bc95e4a628b62884f4631d8a118a9790052953)
@@ -1,4 +1,5 @@
 import { useEffect, useRef, useState } from "react";
 import { useNavigate } from "react-router-dom";
+import { baseURL } from "../api/axiosInstance";
 import { usePlayer } from "../context/playerContext";
 import { toEmbedUrl } from "../utils/utils";
@@ -94,5 +95,5 @@
 			{/* Cover */}
 			<img
-				src={song.cover || "/favicon.png"}
+				src={song.cover ? `${baseURL}/${song.cover}` : "/favicon.png"}
 				alt={song.title}
 				className="w-12 h-12 rounded object-cover shrink-0"
