fix bug
All checks were successful
Build & Deploy / deploy (push) Successful in 3m39s

This commit is contained in:
2026-01-20 21:36:35 +01:00
parent 1293adbef2
commit f62485a67d
4 changed files with 13 additions and 8 deletions

View File

@@ -10,6 +10,7 @@ export default function AnalyticsProvider() {
const searchParams = useSearchParams();
useEffect(() => {
if (!pathname) return;
const services = getAppServices();
const url = `${pathname}${searchParams?.size ? `?${searchParams.toString()}` : ''}`;
services.analytics.trackPageview(url);