Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcsally committed Dec 8, 2023
1 parent 5376fab commit d7a97da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/// <reference types="next" />
/// <reference types="next/types/global" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
Expand Down
4 changes: 3 additions & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ const Home = () => (
/>
</Head>
<App />
<Script strategy="afterInteractive">{GA}</Script>
<Script id="google-analytics" strategy="afterInteractive">
{GA}
</Script>
</>
)

Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
"incremental": true
},
"include": [
"src"
Expand Down

0 comments on commit d7a97da

Please sign in to comment.