trackPendoEvent.tsx 313 B

1234567891011
  1. export default function trackPendoEvent(
  2. eventName: string,
  3. data: Record<PropertyKey, unknown>
  4. ) {
  5. // make sure we have the tracking function
  6. if (typeof window.pendo?.track !== 'function') {
  7. return;
  8. }
  9. // TODO: force all data to lower case field properties
  10. window.pendo.track(eventName, data);
  11. }