ci
Some checks failed
Deploy SSR / deploy (push) Failing after 1m8s

This commit is contained in:
Lee
2024-09-11 15:48:18 +01:00
parent f9e665b2e6
commit 50e031fc4b
3 changed files with 67 additions and 7 deletions

View File

@ -1,5 +1,4 @@
import { scoresaberLeaderboard } from "@/app/common/leaderboard/impl/scoresaber";
import { ScoreSort } from "@/app/common/leaderboard/sort";
import { formatNumberWithCommas } from "@/app/common/number-utils";
import PlayerData from "@/app/components/player/player-data";
import { format } from "@formkit/tempo";
@ -40,15 +39,12 @@ export async function generateMetadata({ params: { slug } }: Props): Promise<Met
export default async function Search({ params: { slug } }: Props) {
const id = slug[0]; // The players id
const sort: ScoreSort = (slug[1] as ScoreSort) || "recent"; // The sorting method
const page = slug[2] || 1; // The page number
// const sort: ScoreSort = (slug[1] as ScoreSort) || "recent"; // The sorting method
// const page = slug[2] || 1; // The page number
const player = await scoresaberLeaderboard.lookupPlayer(id, false);
console.log("id", id);
console.log("sort", sort);
console.log("page", page);
if (player == undefined) {
// Invalid player id
return redirect("/");
}