Hey there!
I’m having a weird behavior.
I’m using the Klaviyo object on my site; when the user gets in the page, just in case, I do a push with “identify”.
window?.klaviyo?.push(o
"identify",
{
email,
},
]);
Also, when i get into a PDP/Product Detail Page, I do a push to the “Viewed Product” metric.
window?.klaviyo?.push(l
"track",
"Viewed Product",
{
propA, propB, propC
},
]);
By some reason, sometimes, Active on Site shows the Viewed Product information/payload instead of its usual payload, and that should not happen?
Is there any way to avoid that?
Am I doing something wrong?
Thanks!