From b63701c67324086d479dd26e72457cd8fc1a79e0 Mon Sep 17 00:00:00 2001 From: Rohit Date: Fri, 25 Apr 2025 19:33:12 +0530 Subject: [PATCH] feat: emit list false on discard --- src/context/browserActions.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/context/browserActions.tsx b/src/context/browserActions.tsx index bc377bbb..d344f6af 100644 --- a/src/context/browserActions.tsx +++ b/src/context/browserActions.tsx @@ -88,6 +88,7 @@ export const ActionProvider = ({ children }: { children: ReactNode }) => { const stopGetList = () => { setGetList(false); + socket?.emit('setGetList', { getList: false }); setPaginationType(''); setLimitType(''); setCustomLimit('');