feat: pagination selector state

This commit is contained in:
karishmas6
2024-09-01 01:01:00 +05:30
parent 76f864e672
commit 794a85bbac

View File

@@ -24,6 +24,8 @@ export const RightSidePanel = () => {
const [confirmedTextSteps, setConfirmedTextSteps] = useState<{ [id: number]: boolean }>({});
const [showPaginationOptions, setShowPaginationOptions] = useState(false);
const [selectedPaginationSetting, setSelectedPaginationSetting] = useState<string | null>(null);
const [paginationSelector, setPaginationSelector] = useState<string | null>(null);
const { lastAction, notify } = useGlobalInfoStore();
const { getText, startGetText, stopGetText, getScreenshot, startGetScreenshot, stopGetScreenshot, getList, startGetList, stopGetList } = useActionContext();