Fix map art
This commit is contained in:
parent
ed6a3629ca
commit
005b653544
@ -106,13 +106,13 @@ export const useSongDataStore = create<SongDataState>()((set) => ({
|
|||||||
leaderboardType
|
leaderboardType
|
||||||
).getMapLeaderboardData(mapHash, mapDiff, characteristic);
|
).getMapLeaderboardData(mapHash, mapDiff, characteristic);
|
||||||
|
|
||||||
const mapData = await axios.get(
|
const response = await axios.get(
|
||||||
`${env("SITE_URL")}/api/beatsaver/map?hash=${mapHash}`
|
`${env("SITE_URL")}/api/beatsaver/map?hash=${mapHash}`
|
||||||
);
|
);
|
||||||
if (mapData.status !== 200) {
|
if (response.status !== 200) {
|
||||||
return set({ isLoading: false, hasError: hasError });
|
return set({ isLoading: false, hasError: hasError });
|
||||||
}
|
}
|
||||||
const { bsr, mapArt } = mapData.data.data;
|
const { bsr, mapArt } = response.data;
|
||||||
|
|
||||||
set({
|
set({
|
||||||
isLoading: false,
|
isLoading: false,
|
||||||
|
Reference in New Issue
Block a user