Skip to content

Commit adae56f

Browse files
committed
fix useMemo deps
1 parent c1bb1de commit adae56f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/components/src/InputText/InputText.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const Input = ({
6363
}
6464

6565
return processActions(baseActions);
66-
}, [processActions, value]);
66+
}, [disabled, onChange, processActions, value]);
6767
const renderActions = () => {
6868
if (actions.length === 0) {
6969
return null;

0 commit comments

Comments
 (0)