From 794a85bbac9b82fdb9039b2b32c656ed5c34afac Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 1 Sep 2024 01:01:00 +0530 Subject: [PATCH] feat: pagination selector state --- src/components/organisms/RightSidePanel.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index 5e481960..09807130 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -24,6 +24,8 @@ export const RightSidePanel = () => { const [confirmedTextSteps, setConfirmedTextSteps] = useState<{ [id: number]: boolean }>({}); const [showPaginationOptions, setShowPaginationOptions] = useState(false); const [selectedPaginationSetting, setSelectedPaginationSetting] = useState(null); + const [paginationSelector, setPaginationSelector] = useState(null); + const { lastAction, notify } = useGlobalInfoStore(); const { getText, startGetText, stopGetText, getScreenshot, startGetScreenshot, stopGetScreenshot, getList, startGetList, stopGetList } = useActionContext();