add hover transition to the footer
All checks were successful
Deploy SSR / deploy (push) Successful in 1m43s

This commit is contained in:
Lee
2024-09-14 18:40:39 +01:00
parent 21e39be003
commit f705218bfd
48 changed files with 527 additions and 288 deletions

View File

@ -1,7 +1,7 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
"use client";
import ScoreSaberPlayer from "@/common/service/types/scoresaber/scoresaber-player";
import ScoreSaberPlayerToken from "@/common/model/token/scoresaber/score-saber-player-token";
import { formatNumberWithCommas } from "@/common/number-utils";
import {
CategoryScale,
@ -86,7 +86,7 @@ export const options: any = {
};
type Props = {
player: ScoreSaberPlayer;
player: ScoreSaberPlayerToken;
};
export default function PlayerRankChart({ player }: Props) {