diff --git a/packages/ui/components/form/inputs/Input.tsx b/packages/ui/components/form/inputs/Input.tsx index 0f0075077e..9b1508248e 100644 --- a/packages/ui/components/form/inputs/Input.tsx +++ b/packages/ui/components/form/inputs/Input.tsx @@ -127,14 +127,6 @@ export const InputField = forwardRef(function id={id} type={type} placeholder={placeholder} - {...passThrough} - {...(type == "search" && { - onChange: (e) => { - setInputValue(e.target.value); - props.onChange && props.onChange(e); - }, - value: inputValue, - })} isFullWidth={inputIsFullWidth} className={classNames( className, @@ -144,6 +136,14 @@ export const InputField = forwardRef(function "!my-0 !ring-0" )} {...passThrough} + {...(type == "search" && { + onChange: (e) => { + console.log(e.target.value); + setInputValue(e.target.value); + props.onChange && props.onChange(e); + }, + value: inputValue, + })} readOnly={readOnly} ref={ref} />