From b19b05438eb95bd018fe906776efff06528b23c5 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 8 Sep 2024 12:21:08 +0530 Subject: [PATCH] feat(wip): -rm local customLimit --- src/components/organisms/RightSidePanel.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index 86cc4517..aefdbcf6 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -35,7 +35,6 @@ export const RightSidePanel: React.FC = ({ onFinishCapture const [showPaginationOptions, setShowPaginationOptions] = useState(false); const [showLimitOptions, setShowLimitOptions] = useState(false); const [selectedLimit, setSelectedLimit] = useState('10'); - const [customLimit, setCustomLimit] = useState(''); const { lastAction, notify } = useGlobalInfoStore(); const { getText, startGetText, stopGetText, getScreenshot, startGetScreenshot, stopGetScreenshot, paginationMode, getList, startGetList, stopGetList, startPaginationMode, stopPaginationMode, paginationType, updatePaginationType, limitMode, limitType, customLimit, updateLimitType, updateCustomLimit, stopLimitMode } = useActionContext();