Describe the bug
Pseudo code
const { selectProps } = useSelect({resource: 'users'})
useEffect(() => {
console.log(selectProps.value);
, [selectProps.value])
return <Select {...selectProps} />
I would expect the useEffect to run everytime I select a new value with the the select item
Steps To Reproduce
Check psudo code above
Expected behavior
value should contain the value
Packages
"@refinedev/antd": "^5.44.0",
Additional Context
No response