Skip to content

Commit ab1b18c

Browse files
author
Grant Jordan
committed
Updated null name to empty string
1 parent addb9b6 commit ab1b18c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

funnelScripts.js

+6
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,15 @@ const makeCalendlyUrl = (base_url) => {
111111
if ($("#iframe-inject-cal").length) {
112112

113113
let name = getTrackingId('name');
114+
114115
if (name === "null") {
115116
name = getTrackingId('fullname');
116117
}
118+
119+
if (name === "null") {
120+
name = '';
121+
}
122+
117123
let email = getTrackingId('email');
118124
if (email === 'null') {
119125
email = '';

0 commit comments

Comments
 (0)