diff --git a/client/a8c-for-agencies/components/a4a-migration-offer-v2/migration-contact-support-form/index.tsx b/client/a8c-for-agencies/components/a4a-migration-offer-v2/migration-contact-support-form/index.tsx index d4263c99fd03a..2000488302205 100644 --- a/client/a8c-for-agencies/components/a4a-migration-offer-v2/migration-contact-support-form/index.tsx +++ b/client/a8c-for-agencies/components/a4a-migration-offer-v2/migration-contact-support-form/index.tsx @@ -107,7 +107,14 @@ export default function MigrationContactSupportForm( { show, onClose }: Props ) } ) ); - submit( { message, name, email, product, no_of_sites: site } ); + submit( { + message, + name, + email, + product, + no_of_sites: site, + tags: [ 'a4a_form_dash_migration' ], + } ); }, [ hasCompletedForm, dispatch, message, submit, name, email, product, site ] ); useEffect( () => { diff --git a/client/a8c-for-agencies/data/support/types.ts b/client/a8c-for-agencies/data/support/types.ts index 141dd6597ffa1..eab863fa37d33 100644 --- a/client/a8c-for-agencies/data/support/types.ts +++ b/client/a8c-for-agencies/data/support/types.ts @@ -14,4 +14,5 @@ export interface SubmitContactSupportParams { no_of_sites?: number; contact_type?: string; pressable_id?: number; + tags?: string[]; }