From 89fdb8ac43cb23e3cc8615d9a476986a6e2bdeea Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Mon, 12 Dec 2022 21:32:10 +0200 Subject: [PATCH] Don't track search params changing --- app/root.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/root.tsx b/app/root.tsx index cdf79f9b7..1a7b6cc5e 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -243,7 +243,7 @@ function useFathom() { if (process.env.NODE_ENV !== "production") return; trackPageview(); - }, [location.pathname, location.search]); + }, [location.pathname]); } function HydrationTestIndicator() {