From 7ae014ae0bf576b816e2fab903298faf89fce33e Mon Sep 17 00:00:00 2001 From: amhsirak Date: Tue, 13 May 2025 23:28:19 +0530 Subject: [PATCH] feat: wrap helperText in span --- src/components/proxy/ProxyForm.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/proxy/ProxyForm.tsx b/src/components/proxy/ProxyForm.tsx index 4df445e2..a4d5111e 100644 --- a/src/components/proxy/ProxyForm.tsx +++ b/src/components/proxy/ProxyForm.tsx @@ -203,7 +203,11 @@ const ProxyForm: React.FC = () => { fullWidth required error={!!errors.server_url} - helperText={errors.server_url || t('proxy.server_url_helper')} + helperText={ + + {errors.server_url || t('proxy.server_url_helper')} + + } />