Quellcode durchsuchen

Removed debug mode.

Pouria Ezzati vor 8 Jahren
Ursprung
Commit
a810813215
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      client/helpers/analytics.js

+ 1 - 1
client/helpers/analytics.js

@@ -2,7 +2,7 @@ import ReactGA from 'react-ga';
 import { GOOGLE_ANALYTICS_ID } from '../config';
 
 export const initGA = () => {
-  ReactGA.initialize(GOOGLE_ANALYTICS_ID, { debug: true });
+  ReactGA.initialize(GOOGLE_ANALYTICS_ID);
 };
 
 export const logPageView = () => {