Skip to content

Commit

Permalink
Updated null name to empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
Grant Jordan committed Jun 21, 2022
1 parent addb9b6 commit ab1b18c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions funnelScripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,15 @@ const makeCalendlyUrl = (base_url) => {
if ($("#iframe-inject-cal").length) {

let name = getTrackingId('name');

if (name === "null") {
name = getTrackingId('fullname');
}

if (name === "null") {
name = '';
}

let email = getTrackingId('email');
if (email === 'null') {
email = '';
Expand Down

0 comments on commit ab1b18c

Please sign in to comment.