From ad8b5bc78d95cbf26af2c244d3dcb5de3e823a2f Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 13 Oct 2024 05:32:10 +0530 Subject: [PATCH] fix: start pagination mode at initial capture stage --- src/components/organisms/RightSidePanel.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index 88307086..96f0269d 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -276,6 +276,7 @@ export const RightSidePanel: React.FC = ({ onFinishCapture const handleConfirmListCapture = useCallback(() => { switch (captureStage) { case 'initial': + startPaginationMode(); setShowPaginationOptions(true); setCaptureStage('pagination'); break;