From 309577c460a08c6ea999d82938a408b7a9f8738c Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 8 Sep 2024 12:18:19 +0530 Subject: [PATCH] docs: automatically set limit mode to true --- src/context/browserActions.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/context/browserActions.tsx b/src/context/browserActions.tsx index 08754071..6d11c506 100644 --- a/src/context/browserActions.tsx +++ b/src/context/browserActions.tsx @@ -46,6 +46,7 @@ export const ActionProvider = ({ children }: { children: ReactNode }) => { const startPaginationMode = () => setPaginationMode(true); const stopPaginationMode = () => { setPaginationMode(false); + // Automatically start limit mode when pagination mode ends setLimitMode(true); };