We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 076e725 commit 1aae481Copy full SHA for 1aae481
client/a8c-for-agencies/sections/signup/signup-v2/index.tsx
@@ -1,7 +1,14 @@
1
+import { loadScript } from '@automattic/load-script';
2
+import { useEffect } from 'react';
3
import MultiStepForm from './components/multi-step-form';
4
import SignupWrapper from './components/signup-wrapper';
5
6
const AgencySignupV2 = () => {
7
+ useEffect( () => {
8
+ // We need to include HubSpot tracking code on the signup form.
9
+ loadScript( '//js.hs-scripts.com/45522507.js' );
10
+ }, [] );
11
+
12
return (
13
<SignupWrapper>
14
<MultiStepForm />
0 commit comments