From 633514547031d4f291ce0a2b088910932133c604 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 2 Oct 2024 23:39:19 +0530 Subject: [PATCH] chore: lint --- src/components/organisms/ProxyForm.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/organisms/ProxyForm.tsx b/src/components/organisms/ProxyForm.tsx index 39b1702c..47e6c305 100644 --- a/src/components/organisms/ProxyForm.tsx +++ b/src/components/organisms/ProxyForm.tsx @@ -28,7 +28,7 @@ const ProxyForm: React.FC = () => { username: '', password: '', }); - + const { notify } = useGlobalInfoStore(); const validateForm = () => { @@ -73,7 +73,7 @@ const ProxyForm: React.FC = () => { if (!validateForm()) { return; } - + await sendProxyConfig(proxyConfig).then((response) => { if (response) { notify('success', 'Proxy configuration submitted successfully');