diff --git a/interface/src/framework/ap/APSettingsForm.tsx b/interface/src/framework/ap/APSettingsForm.tsx index 925e68ce2..8defdfdf7 100644 --- a/interface/src/framework/ap/APSettingsForm.tsx +++ b/interface/src/framework/ap/APSettingsForm.tsx @@ -1,6 +1,6 @@ import { FC, useState } from 'react'; import { ValidateFieldsError } from 'async-validator'; -import { range } from 'lodash'; +import { range } from 'lodash-es'; import { Button, Checkbox, MenuItem } from '@mui/material'; import WarningIcon from '@mui/icons-material/Warning'; diff --git a/interface/src/utils/useWs.ts b/interface/src/utils/useWs.ts index 6a10fc2a4..05db20f3d 100644 --- a/interface/src/utils/useWs.ts +++ b/interface/src/utils/useWs.ts @@ -1,6 +1,6 @@ import { useCallback, useEffect, useRef, useState } from 'react'; import Sockette from 'sockette'; -import { debounce } from 'lodash'; +import { debounce } from 'lodash-es'; import { addAccessTokenParameter } from '../api/authentication';