From 905ca345ebdd9b71d287c43ba3d4c48d0a8a08a5 Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 22 Feb 2024 20:48:18 -0500 Subject: [PATCH] fix(final-preview-step.tsx): removed the second alert("Some Error Occured") povided to the User Since when an error happened the user was getting 2 alerts, I removed the generic alert in the dashboard application 404 --- .../src/components/new-group-stepper/final-preview-step.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/dashboard/src/components/new-group-stepper/final-preview-step.tsx b/apps/dashboard/src/components/new-group-stepper/final-preview-step.tsx index 9d1c8d17..fef741d3 100644 --- a/apps/dashboard/src/components/new-group-stepper/final-preview-step.tsx +++ b/apps/dashboard/src/components/new-group-stepper/final-preview-step.tsx @@ -51,8 +51,6 @@ export default function FinalPreviewStep({ if (response === null) { setLoading(false) - alert("Some error occurred!") - return } navigate(`/groups/off-chain/${response.id}`)