From 622fd4db30040a43df6aaba6c2786c933af680fa Mon Sep 17 00:00:00 2001 From: m5r Date: Wed, 6 Jul 2022 12:21:51 +0200 Subject: [PATCH] remove fathom logs --- app/features/core/hooks/use-fathom.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/app/features/core/hooks/use-fathom.ts b/app/features/core/hooks/use-fathom.ts index eb1b85b..0a160d8 100644 --- a/app/features/core/hooks/use-fathom.ts +++ b/app/features/core/hooks/use-fathom.ts @@ -15,7 +15,6 @@ export default function useFathom() { }, []); useEffect(() => { - console.log(`tracking ${location.pathname}`); Fathom.trackPageview(); }, [location]); }