replace lodash.merge with deepmerge

This commit is contained in:
David Ralph
2020-11-30 22:25:56 +00:00
parent 7862c43752
commit d80e9d09c8
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ import Navbar from './components/widgets/navbar/Navbar';
import SettingsFunctions from './modules/helpers/settings';
import { ToastContainer } from 'react-toastify';
import Modal from 'react-modal';
import merge from 'lodash.merge';
import merge from 'deepmerge';
// Modals are lazy loaded as the user won't use them every time they open a tab
const Main = React.lazy(() => import('./components/modals/Main'));