@refinedev/core 4.16.2 → 4.16.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@refinedev/core",
3
- "version": "4.16.2",
3
+ "version": "4.16.4",
4
4
  "description": "refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
@@ -232,7 +232,7 @@ export const useSelect = <
232
232
  ...defaultValueQueryOptions,
233
233
  enabled:
234
234
  defaultValues.length > 0 &&
235
- (defaultValueQueryOptionsFromProps?.enabled ?? true),
235
+ (defaultValueQueryOptions?.enabled ?? true),
236
236
  onSuccess: (data) => {
237
237
  defaultValueQueryOnSuccess(data);
238
238
  defaultValueQueryOptions?.onSuccess?.(data);