remove dupe main (#355)

This commit is contained in:
Brad Ullman
2023-04-01 23:17:49 -07:00
committed by GitHub
parent 91cbe0b104
commit f9ddf07085
+2 -2
View File
@@ -8,10 +8,10 @@ const inter = Inter({ subsets: ['latin'] });
function App({ Component, pageProps }: AppProps<{}>) {
return (
<main className={inter.className}>
<div className={inter.className}>
<Toaster />
<Component {...pageProps} />
</main>
</div>
);
}