From 728aa5461943e527260df0c2f5ae49544262e186 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 31 Aug 2024 22:45:51 +0530 Subject: [PATCH] fix: format --- src/components/organisms/RightSidePanel.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index 69180a6e..c1f89f4c 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -90,7 +90,7 @@ export const RightSidePanel = () => { const getListSettingsObject = useCallback(() => { let settings: { listSelector?: string; - fields?: Record; + fields?: Record; pagination?: { type: string; selector?: string } } = {}; @@ -132,7 +132,7 @@ export const RightSidePanel = () => { } }, [stopGetList, getListSettingsObject, socket, notify]); - + const handleConfirmListCapture = useCallback(() => { if (!selectedPaginationSetting) { @@ -142,7 +142,7 @@ export const RightSidePanel = () => { // Proceed to stop capture and emit settings only after pagination type is selected stopCaptureAndEmitGetListSettings(); setShowPaginationOptions(false); - setSelectedPaginationSetting(null); + setSelectedPaginationSetting(null); }, [selectedPaginationSetting, stopCaptureAndEmitGetListSettings]); const handlePaginationSettingSelect = (option: string) => {