File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const List = ({ posts, years }) => {
11
11
< Box >
12
12
{ filteredContents . map ( ( d , ix ) => (
13
13
< Entry
14
- key = { d . title }
14
+ key = { d . title + d . date }
15
15
info = { d }
16
16
first = { ix === 0 }
17
17
final = { ix === filteredContents . length - 1 }
Original file line number Diff line number Diff line change
1
+ import React from 'react'
2
+ import Script from 'next/script'
1
3
import { ThemeProvider } from 'theme-ui'
2
4
import '@carbonplan/components/fonts.css'
3
5
import '@carbonplan/components/globals.css'
@@ -7,6 +9,14 @@ import theme from '@carbonplan/theme'
7
9
const App = ( { Component, pageProps } ) => {
8
10
return (
9
11
< ThemeProvider theme = { theme } >
12
+ { process . env . NEXT_PUBLIC_VERCEL_ENV === 'production' && (
13
+ < Script
14
+ strategy = 'lazyOnload'
15
+ data-domain = 'carbonplan.org'
16
+ data-api = 'https://carbonplan.org/proxy/api/event'
17
+ src = 'https://carbonplan.org/js/script.file-downloads.outbound-links.js'
18
+ />
19
+ ) }
10
20
< Component { ...pageProps } />
11
21
</ ThemeProvider >
12
22
)
You can’t perform that action at this time.
0 commit comments