How to change the error message of form inspection in antd?

the original message is displayed at the bottom of the input box. When you want to change it to focus on the input box, a suspension box is displayed.
is similar to adding a title attribute. Do you have any ideas?
now look at the source code and want to rewrite the renderHelp method inside.

Apr.19,2021

<Tooltip 
    placement="leftTop" 
    title="" 
    arrowPointAtCenter
    trigger="focus">
    <Input style={{width:200}}/>
</Tooltip>

<FormItem style={{ margin: 0 }}>
    <Tooltip title={getFieldError(dataIndex)}>
        {getFieldDecorator(dataIndex, {
            rules: [{
                required: true,
                message: `Please Input ${title}!`,
            }],
            initialValue: record[dataIndex],
        })(this.getInput())}
    </Tooltip>
</FormItem>

this is something like this. Instead of leaving message empty, the global style is changed, and the original message style is set to display:none
so that you can get message, with getFieldError with minimal changes

.
Menu