use lodash-es to save space

This commit is contained in:
Proddy
2023-02-07 21:29:50 +01:00
parent 94f0d040ea
commit a4d31711a0
2 changed files with 2 additions and 2 deletions

View File

@@ -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';

View File

@@ -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';