From dd3886ccb1a069ad8166c51c43d9199bb9037202 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Mon, 2 Sep 2024 01:58:59 +0530 Subject: [PATCH] feat: state to check pagination selection status --- src/components/organisms/BrowserWindow.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/organisms/BrowserWindow.tsx b/src/components/organisms/BrowserWindow.tsx index bd7fc9ae..913f9c53 100644 --- a/src/components/organisms/BrowserWindow.tsx +++ b/src/components/organisms/BrowserWindow.tsx @@ -54,6 +54,7 @@ export const BrowserWindow = () => { const [showAttributeModal, setShowAttributeModal] = useState(false); const [attributeOptions, setAttributeOptions] = useState([]); const [selectedElement, setSelectedElement] = useState<{ selector: string, info: ElementInfo | null } | null>(null); + const [isSelectingPagination, setIsSelectingPagination] = useState(false); const [listSelector, setListSelector] = useState(null); const [fields, setFields] = useState>({});