From 0ca42510b0a90b1f647310edaf57aed0dfd97e16 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 1 Sep 2024 22:42:34 +0530 Subject: [PATCH] feat: state for pagination selection --- 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 e060b6ef..f7c727ed 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -26,6 +26,8 @@ export const RightSidePanel = () => { const [selectedPaginationSetting, setSelectedPaginationSetting] = useState(null); const [paginationSelector, setPaginationSelector] = useState(null); const [showPaginationSelector, setShowPaginationSelector] = useState(false); + const [isSelectingPagination, setIsSelectingPagination] = useState(false); + const { lastAction, notify } = useGlobalInfoStore(); const { getText, startGetText, stopGetText, getScreenshot, startGetScreenshot, stopGetScreenshot, getList, startGetList, stopGetList } = useActionContext();