From d0f554a7c124eb00ca97631cff6ee89bec59b8aa Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 1 Sep 2024 22:44:03 +0530 Subject: [PATCH] feat: start pagination selection --- 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 4d419860..4756be46 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -164,6 +164,7 @@ export const RightSidePanel = () => { const handleStartPaginationSelection = () => { // Start the process of selecting the pagination element + setIsSelectingPagination(true); socket?.emit('action', { action: 'startPaginationSelection' }); };