Hello, I'm currently working with the Input component and I'm aiming to customize the order of Input.Wrapper elements using the inputWrapperOrder property. My configuration is as follows: ['label', 'input', 'description', 'error']. However, I've encountered an issue where some of my inputs don't have a description. Consequently, in these instances, there's no bottom offset between the input field and the error message. Is there a solution to maintain the offset between the error message and the input field without changing the input wrapper order?
I've noticed that the bottom offset is only added if the next component below the input is present. In my scenario, only the error is present, but it's not the first component under the input. Reference: https://github.com/mantinedev/mantine/blob/master/packages/%40mantine/core/src/components/Input/InputWrapper/get-input-offsets/get-input-offsets.ts#L11