Skip to content

Commit c912bd1

Browse files
committed
undo
1 parent 66fec80 commit c912bd1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/form/BookDemoForm/BookDemoForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const BookDemoForm = ({ submit_text = "Submit" }: BookDemoFormProps) => {
7777
data.append("source", window.location.pathname);
7878
data.append(
7979
"tell_us_more",
80-
values.tell_us_more,
80+
`${values.tell_us_more}${topicsSection}\n\nform_source:${window.location.pathname + window.location.search + window.location.hash}`,
8181
);
8282
data.append("company_name",values.first_name+" "+values.last_name);
8383
data.append("vat_id", "");

src/components/form/BookDemoForm/BookEvaluationLicenseForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const BookDemoForm = ({ submit_text = "Submit" }: BookDemoFormProps) => {
6060
data.append("source", window.location.pathname);
6161
data.append(
6262
"tell_us_more",
63-
values.tell_us_more,
63+
`${values.tell_us_more} \n\nform_source:${window.location.pathname + window.location.search + window.location.hash}`,
6464
);
6565

6666
fetch("https://pkgs.defguard.net/api/customer/signup", {

src/components/form/DealRegistrationForm/DealRegistrationForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const DealRegistrationForm = ({ submit_text = "Submit" }: DealRegistrationFormPr
7373
data.append("business_type",values.business_type);
7474
data.append(
7575
"tell_us_more",
76-
values.tell_us_more,
76+
`${values.tell_us_more} \n\nform_source:${window.location.pathname + window.location.search + window.location.hash}`,
7777
);
7878

7979

0 commit comments

Comments
 (0)