We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fa0728 commit c46b5fcCopy full SHA for c46b5fc
apps/landing/src/component/Fathom.tsx
@@ -1,6 +1,8 @@
1
// Fathom.tsx
2
+// @ts-nocheck
3
"use client";
4
5
+
6
import { load, trackPageview } from "fathom-client";
7
import { useEffect, Suspense } from "react";
8
import { usePathname, useSearchParams } from "next/navigation";
@@ -11,7 +13,6 @@ function TrackPageView() {
11
13
12
14
// Load the Fathom script on mount
15
useEffect(() => {
- //@ts-expect-error
16
load(process.env.NEXT_PUBLIC_FATHOM_ID, {
17
auto: false,
18
});
0 commit comments