Changeset f5bc95e for frontend/src/components/Sidebar.tsx
- Timestamp:
- 02/12/26 22:27:24 (5 months ago)
- Branches:
- main
- Children:
- 85512ff
- Parents:
- d85e8e3
- File:
-
- 1 edited
-
frontend/src/components/Sidebar.tsx (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/components/Sidebar.tsx
rd85e8e3 rf5bc95e 1 1 import { useEffect, useState } from "react"; 2 2 import { useNavigate } from "react-router-dom"; 3 import axiosInstance from "../api/axiosInstance";3 import axiosInstance, { baseURL } from "../api/axiosInstance"; 4 4 import { useAuth } from "../context/authContext"; 5 5 import { usePlayer } from "../context/playerContext"; … … 82 82 > 83 83 <img 84 src={song.cover ||"/favicon.png"}84 src={song.cover ? `${baseURL}/${song.cover}` : "/favicon.png"} 85 85 alt={song.title} 86 86 className="w-10 h-10 rounded object-cover"
Note:
See TracChangeset
for help on using the changeset viewer.
