Skip to content

Commit 373bc41

Browse files
authored
Merge pull request #56 from carbonplan/Shane98c/rm-ga
remove google analytics
2 parents c8b7bac + 99c3ad9 commit 373bc41

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

pages/_app.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ const App = ({ Component, pageProps }) => {
1212
<ThemeProvider theme={theme}>
1313
{process.env.NEXT_PUBLIC_VERCEL_ENV === 'production' && (
1414
<Script
15-
strategy='lazyOnload'
1615
data-domain='carbonplan.org'
1716
data-api='https://carbonplan.org/proxy/api/event'
1817
src='https://carbonplan.org/js/script.file-downloads.outbound-links.js'

pages/_document.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
import Document, { Html, Main, NextScript, Head } from 'next/document'
2-
import { Tracking } from '@carbonplan/components'
32
import { InitializeColorMode } from 'theme-ui'
43

54
class MyDocument extends Document {
65
render() {
76
return (
87
<Html lang='en' className='no-focus-outline'>
9-
<Head>
10-
<Tracking />
11-
</Head>
8+
<Head />
129
<body>
1310
<InitializeColorMode />
1411
<Main />

0 commit comments

Comments
 (0)