fix: text split try catch

This commit is contained in:
Ibrahima G. Coulibaly
2024-06-21 22:35:56 +01:00
parent 8b58361e1f
commit 94aa86e4db
7 changed files with 161 additions and 57 deletions

View File

@@ -1,4 +1,4 @@
import { createTheme } from '@mui/material'
import { createTheme } from '@mui/material';
const theme = createTheme({
typography: {
@@ -6,7 +6,8 @@ const theme = createTheme({
textTransform: 'none'
}
},
palette: { background: { default: '#ebf5ff' } }
})
palette: { background: { default: '#ebf5ff' } },
zIndex: { snackbar: 100000 }
});
export default theme
export default theme;