From 8acc306a58c837acf1299c114f485bf592415ca6 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 14 Sep 2024 08:38:07 +0530 Subject: [PATCH] feat: notify --- src/components/organisms/RightSidePanel.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index be14f9af..02f5ef3a 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -254,7 +254,7 @@ export const RightSidePanel: React.FC = ({ onFinishCapture setTextLabels({}); setErrors({}); setConfirmedTextSteps({}); - notify('info', 'All text capture steps discarded'); + notify('info', 'Capture Text steps discarded'); }, [browserSteps, stopGetText, deleteBrowserStep]); const discardGetList = useCallback(() => { @@ -265,7 +265,7 @@ export const RightSidePanel: React.FC = ({ onFinishCapture } }); resetListState(); - notify('info', 'All list capture steps discarded'); + notify('info', 'Capture List steps discarded'); }, [browserSteps, stopGetList, deleteBrowserStep, resetListState]);