From f5df4c9c8ae9b957e5cf550aec259b5b6997cb13 Mon Sep 17 00:00:00 2001 From: Rohit Date: Wed, 30 Apr 2025 22:21:40 +0530 Subject: [PATCH] feat: rm other page and data --- src/components/run/InterpretationLog.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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();