shortcut-next 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shortcut-next",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Scaffold Next.js apps with MUI base or Tailwind v4 preset.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -13,7 +13,7 @@ import { AuthProvider } from '@/@core/context/AuthContext'
13
13
  function ThemedProviders({ children, client }: { children: React.ReactNode; client: QueryClient }) {
14
14
  const { settings } = useSettings()
15
15
  return (
16
- <ThemeComponent settings={{ ...settings }}>
16
+ <ThemeComponent settings={settings}>
17
17
  <QueryClientProvider client={client}>
18
18
  <I18nProvider>
19
19
  <HydrationGate fallback={<Spinner />}>{children}</HydrationGate>