Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { mayWeTrackByTracker } from '../tracker-buckets';
import { recordPlansViewInCriteo } from './criteo';
// Ensure setup has run.
import './setup';
/**
* A generic function that we can export and call to track plans page views with our ad partners
*/
export function retargetViewPlans() {
if ( mayWeTrackByTracker( 'criteo' ) ) {
recordPlansViewInCriteo();
}
}