Skip to content

Commit

Permalink
DOP-3079: use lodash package (#855)
Browse files Browse the repository at this point in the history
  • Loading branch information
seungpark authored Jul 14, 2023
1 parent e79ee18 commit f2651d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 26 deletions.
23 changes: 1 addition & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@
"https-browserify": "^1.0.0",
"immer": "^9.0.6",
"json-schema": "^0.4.0",
"lodash.isempty": "^4.4.0",
"lodash.keyby": "^4.6.0",
"lodash": "^4.6.0",
"minimist": "^1.2.6",
"mobx": "^6.1.5",
"mongodb-stitch-browser-sdk": "^4.8.0",
Expand Down
3 changes: 1 addition & 2 deletions src/components/DeprecatedVersionSelector.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import React, { useCallback, useEffect, useState } from 'react';
import PropTypes from 'prop-types';
import queryString from 'query-string';
import keyBy from 'lodash.keyby';
import isEmpty from 'lodash.isempty';
import { keyBy, isEmpty } from 'lodash';
import Button from '@leafygreen-ui/button';
import { css, cx } from '@leafygreen-ui/emotion';
import { isBrowser } from '../utils/is-browser';
Expand Down

0 comments on commit f2651d4

Please sign in to comment.