From 74d9e0b010b6f45c8e13ba645bdfcff59c805be3 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Mon, 28 Oct 2024 06:45:57 +0530 Subject: [PATCH] feat: notify on pagination selection --- src/components/organisms/BrowserWindow.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/organisms/BrowserWindow.tsx b/src/components/organisms/BrowserWindow.tsx index f6afaacc..80dfec7f 100644 --- a/src/components/organisms/BrowserWindow.tsx +++ b/src/components/organisms/BrowserWindow.tsx @@ -203,6 +203,7 @@ export const BrowserWindow = () => { // Only allow selection in pagination mode if type is not empty, 'scrollDown', or 'scrollUp' if (paginationType !== '' && paginationType !== 'scrollDown' && paginationType !== 'scrollUp' && paginationType !== 'none') { setPaginationSelector(highlighterData.selector); + notify(`info`, `Pagination element selected successfully.`); addListStep(listSelector!, fields, currentListId || 0, { type: paginationType, selector: highlighterData.selector }); } return;