From de3deb5197b16647efef2639c3a5850b1ac531b3 Mon Sep 17 00:00:00 2001 From: TomDijkema Date: Fri, 6 Dec 2024 08:30:36 +0100 Subject: [PATCH] Build fix 2 --- src/components/digitalSpecimen/DigitalSpecimen.tsx | 4 +--- src/components/digitalSpecimen/tourSteps/masTourSteps.tsx | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/digitalSpecimen/DigitalSpecimen.tsx b/src/components/digitalSpecimen/DigitalSpecimen.tsx index f9650ec6..e528bc35 100644 --- a/src/components/digitalSpecimen/DigitalSpecimen.tsx +++ b/src/components/digitalSpecimen/DigitalSpecimen.tsx @@ -222,9 +222,7 @@ const DigitalSpecimen = () => { - + ); }; diff --git a/src/components/digitalSpecimen/tourSteps/masTourSteps.tsx b/src/components/digitalSpecimen/tourSteps/masTourSteps.tsx index a8c29104..d677b2ed 100644 --- a/src/components/digitalSpecimen/tourSteps/masTourSteps.tsx +++ b/src/components/digitalSpecimen/tourSteps/masTourSteps.tsx @@ -23,19 +23,17 @@ import DigitalSpecimenTourStepsText from 'sources/tourText/digitalSpecimen.json' /* Props Type */ type Props = { - annotationMode: boolean, SetAnnotationMode: Function }; /** * Component that renders the tour steps for the machine annotation services on the digital specimen page - * @param annotationMode Boolean that indicates if the annotation mode is on or not * @param SetAnnotationMode Function to set the annotation mode * @returns JSX Component */ const MasTourSteps = (props: Props) => { - const { annotationMode, SetAnnotationMode } = props; + const { SetAnnotationMode } = props; /* Hooks */ const dispatch = useAppDispatch();