fix ga
This commit is contained in:
parent
f5e2ed40a7
commit
34e1359872
11
src/App.tsx
11
src/App.tsx
|
@ -37,14 +37,17 @@ if (prod) {
|
|||
function App(props: RouteComponentProps) {
|
||||
const [navOpen, setNavOpen] = useState(false);
|
||||
const { user } = useUser();
|
||||
function logAnalytics() {
|
||||
if (prod && !(user?.admin)) {
|
||||
ReactGA.pageview(window.location.pathname);
|
||||
};
|
||||
}
|
||||
useEffect(() => {
|
||||
ReactGA.pageview(window.location.pathname);
|
||||
logAnalytics();
|
||||
}, []);
|
||||
useEffect(() => {
|
||||
window.scroll(0, 0);
|
||||
if (prod && !(user?.admin)) {
|
||||
ReactGA.pageview(window.location.pathname);
|
||||
}
|
||||
logAnalytics();
|
||||
}, [props.location.pathname, user]);
|
||||
return (
|
||||
<>
|
||||
|
|
Loading…
Reference in New Issue