Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update _app.tsx #1685

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* eslint-disable no-mixed-spaces-and-tabs */
import 'react-loading-skeleton/dist/skeleton.css';
import '../styles/globals.css';
import { GA_MEASUREMENT_ID, RECAPTCHA_SITE_KEY, jitsuConfiguration } from '@app/constants';
import { GA_MEASUREMENT_ID, jitsuConfiguration } from '@app/constants';
import { JitsuProvider } from '@jitsu/jitsu-react';
import { Analytics } from '@vercel/analytics/react';
import { AppState } from 'lib/app/init-state';
import ChatwootWidget from 'lib/features/integrations/chatwoot';

Check warning on line 8 in apps/web/pages/_app.tsx

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (Chatwoot)

Check warning on line 8 in apps/web/pages/_app.tsx

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (chatwoot)
import { ThemeProvider } from 'next-themes';
import type { AppProps } from 'next/app';
import Head from 'next/head';
Expand All @@ -29,9 +29,9 @@
/>
<Script strategy="lazyOnload" id="google-analytic-script">
{` window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}

Check warning on line 32 in apps/web/pages/_app.tsx

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (gtag)
gtag('js', new Date());

Check warning on line 33 in apps/web/pages/_app.tsx

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (gtag)
gtag('config', '${GA_MEASUREMENT_ID}');`}

Check warning on line 34 in apps/web/pages/_app.tsx

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (gtag)
</Script>
</>
)}
Expand All @@ -55,7 +55,7 @@
<I18nextProvider i18n={i18n}>
<AppState />
<JitsuAnalytics user={pageProps?.user} />
<ChatwootWidget />

Check warning on line 58 in apps/web/pages/_app.tsx

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (Chatwoot)
<Component {...pageProps} />
</I18nextProvider>
</SkeletonTheme>
Expand Down
Loading