Skip to content

Commit

Permalink
chore: Remove lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ptbrowne committed Oct 27, 2022
1 parent ea74866 commit 018b9c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ class MyDocument extends Document {
return (
<Html data-app-version={`${process.env.NEXT_PUBLIC_VERSION}`}>
<Head>
{/* eslint-disable-next-line @next/next/no-sync-scripts */}
<script src="/api/client-env"></script>
{GA_TRACKING_ID && (
<>
Expand All @@ -24,7 +25,7 @@ class MyDocument extends Document {
</Head>
<body>
<Main />
<script noModule src="/static/ie-check.js"></script>
<script noModule src="/static/ie-check.js" defer></script>
<NextScript />
</body>
</Html>
Expand Down

0 comments on commit 018b9c4

Please sign in to comment.