feat: wrap helperText in span

This commit is contained in:
amhsirak
2025-05-13 23:28:19 +05:30
parent 5563c33ee5
commit 7ae014ae0b

View File

@@ -203,7 +203,11 @@ const ProxyForm: React.FC = () => {
fullWidth
required
error={!!errors.server_url}
helperText={errors.server_url || t('proxy.server_url_helper')}
helperText={
<span style={{ marginLeft: '-10px' }}>
{errors.server_url || t('proxy.server_url_helper')}
</span>
}
/>
</FormControl>
<FormControl>