It says "Unrecognized child content inside component 'RadzenFormField'. The component 'RadzenFormField' accepts child content through the following top-level items: 'ChildContent', 'Start', 'End', 'Helper'.".
So, if I customize my helper through "rz-form-field-helper" class with, for example, additional paddings or margins, I get the unnecessary empty space even if HelperText is null or empty.
It is not allocated, because you didn't apply some paddings or margins to helper. But if fields are inside a stack, it is hard to distinguish to which of them the helper relates - there is no enough space between helper element and the next field for this.
To distinguish it I need to set gap (RadzenStack.Gap) as minimum as 1.5 rem, which occupies too much space on the screen. So, the suitable way would be to add some padding or margn to just the helper element.
If you add some style with padding, the space will be allocated even with an empty helper element: