From 8c318699c4ff0b6ddfd097ca228c1210556e16a5 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 21 Oct 2025 09:40:28 -0600 Subject: [PATCH] Cleanup --- web/src/components/card/ClassificationCard.tsx | 2 -- .../classification/ClassificationModelWizardDialog.tsx | 2 +- web/src/pages/FaceLibrary.tsx | 1 - web/src/views/classification/ModelTrainingView.tsx | 2 -- 4 files changed, 1 insertion(+), 6 deletions(-) diff --git a/web/src/components/card/ClassificationCard.tsx b/web/src/components/card/ClassificationCard.tsx index 4be8284e3..71ddf34c5 100644 --- a/web/src/components/card/ClassificationCard.tsx +++ b/web/src/components/card/ClassificationCard.tsx @@ -17,7 +17,6 @@ import { useNavigate } from "react-router-dom"; import { getTranslatedLabel } from "@/utils/i18n"; type ClassificationCardProps = { - className?: string; imgClassName?: string; data: ClassificationItemData; threshold?: ClassificationThreshold; @@ -28,7 +27,6 @@ type ClassificationCardProps = { children?: React.ReactNode; }; export function ClassificationCard({ - className, imgClassName, data, threshold, diff --git a/web/src/components/classification/ClassificationModelWizardDialog.tsx b/web/src/components/classification/ClassificationModelWizardDialog.tsx index c6c06baa2..621c9ea90 100644 --- a/web/src/components/classification/ClassificationModelWizardDialog.tsx +++ b/web/src/components/classification/ClassificationModelWizardDialog.tsx @@ -27,7 +27,7 @@ export default function ClassificationModelWizardDialog({ const { t } = useTranslation(["views/classificationModel"]); // step management - const [currentStep, setCurrentStep] = useState(0); + const [currentStep, _] = useState(0); return ( {sortedFaces.map((image: string) => ( ( (