From b2a1226bcaa1e1ccfadeac328409a1f3f813fb5e Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 8 Sep 2024 13:53:22 +0530 Subject: [PATCH] chore: -rm comments --- src/components/organisms/RightSidePanel.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index 0d4c64ba..f9f0384d 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -141,11 +141,11 @@ export const RightSidePanel: React.FC = ({ onFinishCapture const resetListState = useCallback(() => { setShowPaginationOptions(false); - updatePaginationType(''); // Reset pagination type - setShowLimitOptions(false); // Reset limit options - setSelectedLimit('10'); // Reset limit value to default - updateLimitType(''); // Reset limit type - updateCustomLimit(''); // Reset custom limit value + updatePaginationType(''); + setShowLimitOptions(false); + setSelectedLimit('10'); + updateLimitType(''); + updateCustomLimit(''); }, [updatePaginationType, updateLimitType, updateCustomLimit]);