From 0757012f02a1ff775b1ec9c0a1238fb3f7ad70d0 Mon Sep 17 00:00:00 2001 From: Liam Date: Mon, 30 Sep 2024 23:32:58 +0100 Subject: [PATCH] stupid imports --- src/components/leaderboard/leaderboard-scores.tsx | 2 +- src/components/player/player-scores.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/leaderboard/leaderboard-scores.tsx b/src/components/leaderboard/leaderboard-scores.tsx index 4df1261..d0b23f3 100644 --- a/src/components/leaderboard/leaderboard-scores.tsx +++ b/src/components/leaderboard/leaderboard-scores.tsx @@ -5,7 +5,7 @@ import ScoreSaberLeaderboardToken from "@/common/model/token/scoresaber/score-sa import ScoreSaberLeaderboardScoresPageToken from "@/common/model/token/scoresaber/score-saber-leaderboard-scores-page-token"; import useWindowDimensions from "@/hooks/use-window-dimensions"; import { useQuery } from "@tanstack/react-query"; -import { motion, useAnimation, Variants } from "framer-motion"; +import { motion, useAnimation } from "framer-motion"; import { useCallback, useEffect, useRef, useState } from "react"; import Card from "../card"; import Pagination from "../input/pagination"; diff --git a/src/components/player/player-scores.tsx b/src/components/player/player-scores.tsx index 45a63e2..fffe8fc 100644 --- a/src/components/player/player-scores.tsx +++ b/src/components/player/player-scores.tsx @@ -2,7 +2,7 @@ import { capitalizeFirstLetter } from "@/common/string-utils"; import useWindowDimensions from "@/hooks/use-window-dimensions"; import { ClockIcon, TrophyIcon, XMarkIcon } from "@heroicons/react/24/solid"; import { useQuery } from "@tanstack/react-query"; -import { motion, useAnimation, Variants } from "framer-motion"; +import { motion, useAnimation } from "framer-motion"; import { useCallback, useEffect, useRef, useState } from "react"; import Card from "../card"; import Pagination from "../input/pagination";