From dc9957d72f0ed56a8e5cc6f40082f4c954e887dc Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 21 Sep 2024 18:21:49 +0530 Subject: [PATCH] fix: show confirm error --- src/components/organisms/RightSidePanel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index c1e9cf75..9148fb5a 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -118,7 +118,7 @@ export const RightSidePanel: React.FC = ({ onFinishCapture const stopCaptureAndEmitGetTextSettings = useCallback(() => { const hasUnconfirmedTextSteps = browserSteps.some(step => step.type === 'text' && !confirmedTextSteps[step.id]); if (hasUnconfirmedTextSteps) { - notify('error', 'Please confirm no labels are empty'); + notify('error', 'Please confirm all text fields'); return; } stopGetText();