fixed alignment issues on local credentials front end (for real this time)

This commit is contained in:
Carter 2026-05-20 15:25:21 -06:00
parent dd25770a07
commit dad451c6af

View file

@ -1,5 +1,6 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { StyledEngineProvider } from '@mui/material/styles'
import App from './App'
// 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(
// <StrictMode>
<App />
<StyledEngineProvider injectFirst>
<App />
</StyledEngineProvider>
// </StrictMode>,
)