From 10b522ed06c564863a0a2092d5988480b0a5272b Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 26 Oct 2024 19:09:41 +0530 Subject: [PATCH] fix: error handle --- src/components/organisms/ProxyForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/organisms/ProxyForm.tsx b/src/components/organisms/ProxyForm.tsx index 5034ab5f..5643e7e6 100644 --- a/src/components/organisms/ProxyForm.tsx +++ b/src/components/organisms/ProxyForm.tsx @@ -85,7 +85,7 @@ const ProxyForm: React.FC = () => { console.log(`Failed to submit proxy configuration. Try again. ${response}`) } } catch (error: any) { - notify('Failed to submit proxy configuration', error); + notify('error', `${error} : Failed to submit proxy configuration`); } };