Skip to content

Commit

Permalink
remove the provider stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
StephDietz committed Sep 20, 2023
1 parent 3fbc296 commit 2ad29a7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
7 changes: 0 additions & 7 deletions dashboard/15-final/app/Providers.tsx

This file was deleted.

5 changes: 1 addition & 4 deletions dashboard/15-final/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import './global.css';
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import { AuthProvider } from './Providers';

const inter = Inter({ subsets: ['latin'] });

Expand All @@ -17,9 +16,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>
<AuthProvider>{children}</AuthProvider>
</body>
<body className={inter.className}>{children}</body>
</html>
);
}

0 comments on commit 2ad29a7

Please sign in to comment.