fix(app): use proper ReactGA pageview API with hitType and page params

This commit is contained in:
2026-05-25 21:47:34 +09:00
parent 5947ef1144
commit d12bf5c9e2
+1 -1
View File
@@ -13,7 +13,7 @@ import Search from './features/search/Search';
const AppMain: React.FC = () => {
const location = useLocation();
React.useEffect(() => {
ReactGA.send('pageview');
ReactGA.send({ hitType: 'pageview', page: location.pathname });
}, [location]);
return (