update favicon
All checks were successful
deploy / deploy (push) Successful in 58s

This commit is contained in:
Lee
2023-10-22 08:38:59 +01:00
parent 319c4c13ea
commit 3293f3fde3
6 changed files with 11 additions and 21 deletions

View File

@ -1,6 +1,6 @@
import { ScoresaberPlayer } from "@/schemas/scoresaber/player";
import { ScoresaberPlayerScore } from "@/schemas/scoresaber/playerScore";
import { SSRSettings } from "@/ssrSettings";
import { ssrSettings } from "@/ssrSettings";
import { FetchQueue } from "../fetchWithQueue";
import { formatString } from "../string";
@ -8,7 +8,7 @@ import { formatString } from "../string";
const fetchQueue = new FetchQueue();
// Api endpoints
const API_URL = SSRSettings.proxy + "/https://scoresaber.com/api";
const API_URL = ssrSettings.proxy + "/https://scoresaber.com/api";
const SEARCH_PLAYER_URL =
API_URL + "/players?search={}&page=1&withMetadata=false";
const PLAYER_SCORES =