Skip to content

Commit

Permalink
chore: bump feature deps to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianAndersen committed Dec 20, 2024
1 parent 6dc0133 commit 2fa49e2
Show file tree
Hide file tree
Showing 4 changed files with 195 additions and 165 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,26 @@
"@mui/x-date-pickers": "^7.18.0",
"@serwist/next": "^9.0.1",
"js-cookie": "^3.0.5",
"luxon": "^3.4.4",
"luxon": "^3.5.0",
"next": "14.2.2",
"nuqs": "^1.17.1",
"nuqs": "^2.2.3",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-snowfall": "^1.2.1",
"react-dropzone": "^14.3.5",
"react-snowfall": "^2.2.0",
"react-swipeable-views": "^0.14.0",
"sharp": "^0.33.3",
"sharp": "^0.33.5",
"swr": "^2.2.5",
"zustand": "^4.5.2"
"zustand": "^5.0.2"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/react-swipeable-views": "^0.13.5",
"@types/react-swipeable-views": "^0.13.6",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.56.0",
Expand Down
5 changes: 4 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import { UserProvider } from "@auth0/nextjs-auth0/client";
import { CssBaseline, Experimental_CssVarsProvider as CssVarsProvider, getInitColorSchemeScript } from "@mui/material";
import { Roboto } from "next/font/google";
import { NuqsAdapter } from "nuqs/adapters/next/app";
import React from "react";

import theme from "@/lib/theme";
Expand All @@ -20,7 +21,9 @@ export default function RootLayout({ children }: { children: React.ReactNode })
<CssVarsProvider theme={theme} defaultMode={"system"}>
<CssBaseline enableColorScheme />
<UserProvider>
<body>{children}</body>
<NuqsAdapter>
<body>{children}</body>
</NuqsAdapter>
</UserProvider>
</CssVarsProvider>
</html>
Expand Down
7 changes: 5 additions & 2 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ import { CssBaseline, Experimental_CssVarsProvider as CssVarsProvider } from "@m
import { LocalizationProvider } from "@mui/x-date-pickers";
import { AdapterLuxon } from "@mui/x-date-pickers/AdapterLuxon";
import type { AppProps } from "next/app";
import { NuqsAdapter } from "nuqs/adapters/next/pages";
import React, { useEffect, useState } from "react";
import Snowfall from "react-snowfall";
import { Snowfall } from "react-snowfall";

import theme from "@/lib/theme";
import { checkSantaTime } from "@/lib/utils/santaUtils";
Expand All @@ -35,7 +36,9 @@ function MyApp({ Component, pageProps }: AppProps) {
}}
/>
)}
<Component {...pageProps} />
<NuqsAdapter>
<Component {...pageProps} />
</NuqsAdapter>
</LocalizationProvider>
</UserProvider>
</CssVarsProvider>
Expand Down
Loading

0 comments on commit 2fa49e2

Please sign in to comment.