diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index 4756be46..f0766768 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -153,6 +153,10 @@ export const RightSidePanel = () => { }, [selectedPaginationSetting, paginationSelector, stopCaptureAndEmitGetListSettings, notify]); const handlePaginationSettingSelect = (option: string) => { + if (!selectedPaginationSetting) { + setShowPaginationOptions(true); + return; + } setSelectedPaginationSetting(option); if (['clickNext', 'clickLoadMore'].includes(option)) { setShowPaginationSelector(true);