diff --git a/packages/hooks/src/useReactive/index.ts b/packages/hooks/src/useReactive/index.ts index 75eb8b22d9..b1ddd7e98d 100644 --- a/packages/hooks/src/useReactive/index.ts +++ b/packages/hooks/src/useReactive/index.ts @@ -1,5 +1,5 @@ import { useRef } from 'react'; -import { isPlainObject } from 'lodash'; +import isPlainObject from 'lodash/isPlainObject'; import useCreation from '../useCreation'; import useUpdate from '../useUpdate';