Remove stray semicolon

This commit is contained in:
Xevion
2022-12-18 18:23:24 -06:00
parent c0e3615e76
commit b23b6b1971

View File

@@ -8,7 +8,7 @@ import {GoogleAnalytics} from "nextjs-google-analytics";
const App: AppType = ({Component, pageProps}) => { const App: AppType = ({Component, pageProps}) => {
return <> return <>
<GoogleAnalytics trackPageViews/> <GoogleAnalytics trackPageViews/>
<Component {...pageProps} />; <Component {...pageProps} />
</> </>
}; };