react-ga4 icon indicating copy to clipboard operation
react-ga4 copied to clipboard

`timing` args will always be dropped

Open HuangLiPang opened this issue 2 years ago • 0 comments

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;

HuangLiPang avatar Apr 04 '23 21:04 HuangLiPang