e
All checks were successful
deploy / deploy (push) Successful in 1m0s

This commit is contained in:
Lee 2023-10-29 13:33:06 +00:00
parent bef899d21e
commit 20633c42eb
4 changed files with 4 additions and 4 deletions

@ -1,7 +1,7 @@
"use client"; "use client";
import { ScoresaberPlayer } from "@/schemas/scoresaber/player"; import { ScoresaberPlayer } from "@/schemas/scoresaber/player";
import { formatNumber } from "@/utils/number"; import { formatNumber } from "@/utils/numberUtils";
import { ScoreSaberAPI } from "@/utils/scoresaber/api"; import { ScoreSaberAPI } from "@/utils/scoresaber/api";
import { MagnifyingGlassIcon } from "@heroicons/react/20/solid"; import { MagnifyingGlassIcon } from "@heroicons/react/20/solid";
import clsx from "clsx"; import clsx from "clsx";

@ -5,7 +5,7 @@ import { ScoreSaberAPI } from "@/utils/scoresaber/api";
import Image from "next/image"; import Image from "next/image";
import { ScoresaberScore } from "@/schemas/scoresaber/score"; import { ScoresaberScore } from "@/schemas/scoresaber/score";
import { formatNumber } from "@/utils/number"; import { formatNumber } from "@/utils/numberUtils";
import { scoresaberDifficultyNumberToName } from "@/utils/songUtils"; import { scoresaberDifficultyNumberToName } from "@/utils/songUtils";
import { StarIcon } from "@heroicons/react/20/solid"; import { StarIcon } from "@heroicons/react/20/solid";
import Link from "next/link"; import Link from "next/link";

@ -1,6 +1,6 @@
import { ScoresaberPlayer } from "@/schemas/scoresaber/player"; import { ScoresaberPlayer } from "@/schemas/scoresaber/player";
import { useSettingsStore } from "@/store/settingsStore"; import { useSettingsStore } from "@/store/settingsStore";
import { formatNumber } from "@/utils/number"; import { formatNumber } from "@/utils/numberUtils";
import dynamic from "next/dynamic"; import dynamic from "next/dynamic";
import Link from "next/link"; import Link from "next/link";
import { useStore } from "zustand"; import { useStore } from "zustand";

@ -1,6 +1,6 @@
import { ScoresaberPlayer } from "@/schemas/scoresaber/player"; import { ScoresaberPlayer } from "@/schemas/scoresaber/player";
import { useSettingsStore } from "@/store/settingsStore"; import { useSettingsStore } from "@/store/settingsStore";
import { formatNumber } from "@/utils/number"; import { formatNumber } from "@/utils/numberUtils";
import { useStore } from "zustand"; import { useStore } from "zustand";
import Avatar from "../Avatar"; import Avatar from "../Avatar";
import CountyFlag from "../CountryFlag"; import CountyFlag from "../CountryFlag";