Index: frontend/src/pages/MySongs.tsx
===================================================================
--- frontend/src/pages/MySongs.tsx	(revision db5fb23a9c7d281ecb48c2ebf32e7ff4d9a24c38)
+++ frontend/src/pages/MySongs.tsx	(revision d85e8e3419687c3f5cbf69da39b1abc4a8362f1d)
@@ -1,5 +1,5 @@
 import { useEffect, useState } from "react";
 import { Link, useNavigate } from "react-router-dom";
-import axiosInstance from "../api/axiosInstance";
+import axiosInstance, { baseURL } from "../api/axiosInstance";
 import { useAuth } from "../context/authContext";
 import type { CatalogItem } from "../utils/types";
@@ -155,5 +155,7 @@
 										</span>
 										<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"
@@ -215,5 +217,9 @@
 										<div className="relative w-full pt-[100%] rounded-lg overflow-hidden mb-4 bg-[#282828]">
 											<img
-												src={album.cover || "/favicon.png"}
+												src={
+													album.cover
+														? `${baseURL}/${album.cover}`
+														: "/favicon.png"
+												}
 												alt={album.title}
 												className="absolute inset-0 w-full h-full object-cover"
