Skip to content

Commit

Permalink
fix(utils): direct lodash function import to improve bundling on libr…
Browse files Browse the repository at this point in the history
…ary client side (#3976)
  • Loading branch information
JonaszJestem authored Nov 27, 2023
1 parent d7b59a3 commit c4b9e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/utils/src/enumOptionsSelectValue.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { EnumOptionsType, RJSFSchema, StrictRJSFSchema } from './types';
import enumOptionsValueForIndex from './enumOptionsValueForIndex';
import { isNil } from 'lodash';
import isNil from 'lodash/isNil';

/** Add the enum option value at the `valueIndex` to the list of `selected` values in the proper order as defined by
* `allEnumOptions`
Expand Down

0 comments on commit c4b9e47

Please sign in to comment.