From 50078eb276280ef17415a93a1930c11333921694 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Tue, 8 Oct 2024 18:43:13 +0530 Subject: [PATCH] feat: states for Capture List, Screenshot & Text --- src/components/organisms/RightSidePanel.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index d16889ca..4d71f90c 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -48,6 +48,9 @@ export const RightSidePanel: React.FC = ({ onFinishCapture const [confirmedListTextFields, setConfirmedListTextFields] = useState<{ [listId: string]: { [fieldKey: string]: boolean } }>({}); const [showPaginationOptions, setShowPaginationOptions] = useState(false); const [showLimitOptions, setShowLimitOptions] = useState(false); + const [showCaptureList, setShowCaptureList] = useState(true); + const [showCaptureScreenshot, setShowCaptureScreenshot] = useState(true); + const [showCaptureText, setShowCaptureText] = useState(true); const [captureStage, setCaptureStage] = useState<'initial' | 'pagination' | 'limit' | 'complete'>('initial'); const { lastAction, notify } = useGlobalInfoStore();