diff --git a/components/input/ResizableTextArea.tsx b/components/input/ResizableTextArea.tsx index b9c7a3320c..de34f7d8f1 100644 --- a/components/input/ResizableTextArea.tsx +++ b/components/input/ResizableTextArea.tsx @@ -110,13 +110,7 @@ const ResizableTextArea = defineComponent({ const cls = classNames(prefixCls, attrs.class, { [`${prefixCls}-disabled`]: disabled, }); - const style = [ - attrs.style, - textareaStyles.value, - resizeStatus.value === RESIZE_STATUS_RESIZING - ? { overflowX: 'hidden', overflowY: 'hidden' } - : null, - ]; + const style = [attrs.style, textareaStyles.value]; const textareaProps: any = { ...otherProps, ...attrs,