gtm-now 0.3.0 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -9692,7 +9692,7 @@ __export(prospect_exports, {
9692
9692
  function deduplicatePeople(people) {
9693
9693
  const seen = /* @__PURE__ */ new Set();
9694
9694
  return people.filter((p) => {
9695
- const key = p.email ?? p.linkedin_url ?? `${p.first_name}_${p.last_name}_${p.company}`;
9695
+ const key = p.linkedin_url ?? p.email ?? `${p.first_name}_${p.last_name}_${p.company}`;
9696
9696
  if (seen.has(key)) return false;
9697
9697
  seen.add(key);
9698
9698
  return true;