react-ga4
react-ga4 copied to clipboard
`timing` args will always be dropped
The way we put timing args will never be sent to GA here.
Should be something like
case "timing":
const { hitType , ...timingArgs } = args[0];
this._gaCommandSendTiming(Object.values(timingArgs));
break;