diff --git a/src/Field.tsx b/src/Field.tsx index 10c3ad3b3..1b9d1cba3 100644 --- a/src/Field.tsx +++ b/src/Field.tsx @@ -580,8 +580,7 @@ class Field extends React.Component implements F const value = this.getValue(); const mergedGetValueProps = getValueProps || ((val: StoreValue) => ({ [valuePropName]: val })); - // eslint-disable-next-line @typescript-eslint/no-explicit-any - const originTriggerFunc: any = childProps[trigger]; + const originTriggerFunc = childProps[trigger]; const valueProps = name !== undefined ? mergedGetValueProps(value) : {};