diff --git a/src/context/browserActions.tsx b/src/context/browserActions.tsx index 21f4754d..0918c24f 100644 --- a/src/context/browserActions.tsx +++ b/src/context/browserActions.tsx @@ -26,6 +26,7 @@ export const ActionProvider = ({ children }: { children: ReactNode }) => { const [getList, setGetList] = useState(false); const [getScreenshot, setGetScreenshot] = useState(false); const [paginationMode, setPaginationMode] = useState(false); + const [paginationType, setPaginationType] = useState(''); const startPaginationMode = () => setPaginationMode(true); const stopPaginationMode = () => setPaginationMode(false);