ga-4-react icon indicating copy to clipboard operation
ga-4-react copied to clipboard

'Invalid event parameter "_ipe" on event "gtag.config", parameter will not be logged' error in console

Open rijans opened this issue 2 years ago • 0 comments

Here is my GA4 configuration in app.js in my react app:

import { GA4React } from 'ga-4-react';

const ga4react = new GA4React('G-P36XPJZXD1');
ga4react.initialize().then(
  ga4 => {
    ga4.pageview('path');
    ga4.event('event', 'pageview', 'path'); // or your custom gtag event
  },
  err => {
    console.error(err);
  },
);

But I am getting following errors in console, with Google Analytics Chrome debug extension installed:

GTAG Command: "config", target: "G-P36XPJZXD1", configuration: {} _react_devtools_backend.js:4026 Invalid event parameter "ipe" on event "gtag.config", parameter will not be logged

rijans avatar May 30 '22 10:05 rijans