Changeset f5bc95e for frontend/src/components/userProfile/ArtistView.tsx
- Timestamp:
- 02/12/26 22:27:24 (5 months ago)
- Branches:
- main
- Children:
- 85512ff
- Parents:
- d85e8e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/components/userProfile/ArtistView.tsx
rd85e8e3 rf5bc95e 3 3 import { useNavigate } from "react-router-dom"; 4 4 import { toast } from "react-toastify"; 5 import axiosInstance from "../../api/axiosInstance";5 import axiosInstance, { baseURL } from "../../api/axiosInstance"; 6 6 import type { ArtistContribution } from "../../utils/types"; 7 7 import SongItem from "../SongItem"; … … 65 65 <div className="relative aspect-square rounded-lg mb-3 overflow-hidden shadow-md group-hover:shadow-xl transition-all duration-300 bg-[#181818]"> 66 66 <img 67 src={album.cover || "/favicon.png"} 67 src={ 68 album.cover ? `${baseURL}/${album.cover}` : "/favicon.png" 69 } 68 70 alt={album.title} 69 71 className="w-full h-full object-cover"
Note:
See TracChangeset
for help on using the changeset viewer.
