- {formatTime(solve?.time || 0)}{" "} - - Pb - + {formatTime(solve?.time || 0)}
{/* comment */} diff --git a/src/components/solves/SolvesArea.tsx b/src/components/solves/SolvesArea.tsx index 94d0ccd2..b04c9cfc 100644 --- a/src/components/solves/SolvesArea.tsx +++ b/src/components/solves/SolvesArea.tsx @@ -10,16 +10,14 @@ import { ChatBubbleBottomCenterTextIcon, StarIcon, } from "@heroicons/react/24/solid"; -import { SolveTab } from "@/interfaces/types/SolveTabs"; import { Card } from "../ui/card"; import { useDialogSolve } from "@/store/DialogSolve"; interface SolvesArea { displaySolves: Solve[] | null; - currentTab: SolveTab; } -export function SolvesArea({ displaySolves, currentTab }: SolvesArea) { +export function SolvesArea({ displaySolves }: SolvesArea) { const { handleOpenDialogSolve } = useDialogSolve(); const { selectedCube } = useTimerStore(); const t = useTranslations("Index.SolvesPage");