fix wrapping of y axis chart labels

This commit is contained in:
Henry Dollman
2024-09-16 13:14:23 -04:00
parent c46879694d
commit e03e2b8d67
15 changed files with 117 additions and 143 deletions

View File

@@ -1,5 +1,5 @@
import './index.css'
import { Suspense, lazy, useEffect } from 'react'
import { Suspense, lazy, useEffect, StrictMode } from 'react'
import ReactDOM from 'react-dom/client'
import Home from './components/routes/home.tsx'
import { ThemeProvider } from './components/theme-provider.tsx'
@@ -218,10 +218,10 @@ const Layout = () => {
ReactDOM.createRoot(document.getElementById('app')!).render(
// strict mode in dev mounts / unmounts components twice
// and breaks the clipboard dialog
//<React.StrictMode>
//<StrictMode>
<ThemeProvider>
<Layout />
<Toaster />
</ThemeProvider>
//</React.StrictMode>
//</StrictMode>
)