aboutsummaryrefslogtreecommitdiff
path: root/modern/src/common/theme/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/common/theme/index.js')
-rw-r--r--modern/src/common/theme/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/modern/src/common/theme/index.js b/modern/src/common/theme/index.js
index eb9635db..23fc0d73 100644
--- a/modern/src/common/theme/index.js
+++ b/modern/src/common/theme/index.js
@@ -1,10 +1,10 @@
-import { createTheme, adaptV4Theme } from '@mui/material/styles';
+import { createTheme } from '@mui/material/styles';
import palette from './palette';
import dimensions from './dimensions';
-const theme = createTheme(adaptV4Theme({
+const theme = createTheme({
palette,
dimensions,
-}));
+});
export default theme;