fixed alignment issues on local credentials front end (for real this time)
This commit is contained in:
parent
dd25770a07
commit
dad451c6af
1 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
import { StrictMode } from 'react'
|
import { StrictMode } from 'react'
|
||||||
import { createRoot } from 'react-dom/client'
|
import { createRoot } from 'react-dom/client'
|
||||||
|
import { StyledEngineProvider } from '@mui/material/styles'
|
||||||
import App from './App'
|
import App from './App'
|
||||||
|
|
||||||
// I don't consider providing a disabled button to a Tooltip an error.
|
// I don't consider providing a disabled button to a Tooltip an error.
|
||||||
|
|
@ -20,6 +21,8 @@ if ('serviceWorker' in navigator) {
|
||||||
|
|
||||||
createRoot(document.getElementById('root')!).render(
|
createRoot(document.getElementById('root')!).render(
|
||||||
// <StrictMode>
|
// <StrictMode>
|
||||||
<App />
|
<StyledEngineProvider injectFirst>
|
||||||
|
<App />
|
||||||
|
</StyledEngineProvider>
|
||||||
// </StrictMode>,
|
// </StrictMode>,
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue