Dependency cleanup

This commit is contained in:
Darren Clarke 2024-08-07 12:02:33 +02:00
parent 2d892779bf
commit 2568547384
28 changed files with 170 additions and 482 deletions

View file

@ -9,7 +9,7 @@ import { I18n } from "react-polyglot";
import { AdapterDateFns } from "@mui/x-date-pickers-pro/AdapterDateFnsV3";
import { LocalizationProvider } from "@mui/x-date-pickers-pro";
import { LeafcutterProvider } from "@link-stack/leafcutter-ui/components/LeafcutterProvider";
import { NextAppDirEmotionCacheProvider } from "tss-react/next/appDir";
import { AppRouterCacheProvider } from "@mui/material-nextjs/v14-appRouter";
import en from "@link-stack/leafcutter-ui/locales/en.json";
import fr from "@link-stack/leafcutter-ui/locales/fr.json";
import { LicenseInfo } from "@mui/x-license";
@ -25,7 +25,7 @@ export const MultiProvider: FC<PropsWithChildren> = ({ children }: any) => {
const locale = "en";
return (
<NextAppDirEmotionCacheProvider options={{ key: "css" }}>
<AppRouterCacheProvider>
<SessionProvider>
<CookiesProvider>
<CssBaseline />
@ -38,6 +38,6 @@ export const MultiProvider: FC<PropsWithChildren> = ({ children }: any) => {
</LeafcutterProvider>
</CookiesProvider>
</SessionProvider>
</NextAppDirEmotionCacheProvider>
</AppRouterCacheProvider>
);
};