Skip to content

Commit

Permalink
Ditch providers
Browse files Browse the repository at this point in the history
  • Loading branch information
neilh-cogapp committed Mar 22, 2024
1 parent 3e44f82 commit 65584a3
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 16 deletions.
11 changes: 0 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"instantsearch.css": "^8.1.0",
"konva": "^9.2.2",
"next": "13.5.5",
"next-themes": "^0.2.1",
"perspectivets": "^2.0.0",
"react": "^18",
"react-dom": "^18",
Expand Down
4 changes: 0 additions & 4 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Analytics } from "@vercel/analytics/react"
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import { Providers } from './components/providers';
import './globals.css';

const inter = Inter({ subsets: ['latin'] });
Expand All @@ -14,10 +13,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
return (
<html lang="en" suppressHydrationWarning>
<body className={`h-screen ${inter.className}`}>
{/* Wrapping the children prop */}
<Providers>
{children}
</Providers>
<Analytics />
</body>
</html>
Expand Down

0 comments on commit 65584a3

Please sign in to comment.