diff --git a/src/components/run/InterpretationLog.tsx b/src/components/run/InterpretationLog.tsx index 2695bae4..a33f4732 100644 --- a/src/components/run/InterpretationLog.tsx +++ b/src/components/run/InterpretationLog.tsx @@ -37,7 +37,6 @@ export const InterpretationLog: React.FC = ({ isOpen, se const [captureListPage, setCaptureListPage] = useState(0); const [screenshotPage, setScreenshotPage] = useState(0); - const [otherPage, setOtherPage] = useState(0); const [activeTab, setActiveTab] = useState(0); @@ -137,7 +136,6 @@ export const InterpretationLog: React.FC = ({ isOpen, se setActiveTab(0); setCaptureListPage(0); setScreenshotPage(0); - setOtherPage(0); } }, [shouldResetInterpretationLog]); @@ -168,7 +166,7 @@ export const InterpretationLog: React.FC = ({ isOpen, se } return tabs; - }, [captureListData.length, captureTextData.length, screenshotData.length, otherData.length]); + }, [captureListData.length, captureTextData.length, screenshotData.length]); const availableTabs = getAvailableTabs();