diff --git a/src/app/pledge/components/new-pledge/new-pledge.component.ts b/src/app/pledge/components/new-pledge/new-pledge.component.ts index 63bf1848d..37487e0d7 100644 --- a/src/app/pledge/components/new-pledge/new-pledge.component.ts +++ b/src/app/pledge/components/new-pledge/new-pledge.component.ts @@ -212,6 +212,7 @@ export class NewPledgeComponent implements OnInit, AfterViewInit { stripeToken: stripeResult.token.id, zip: stripeResult.token.card?.address_zip, timestamp: new Date().getTime(), + client: 'Web App', }; try { @@ -317,4 +318,5 @@ export interface PledgeData { id?: string; paid?: boolean; stripeChargeId?: string; + client?: 'Web App'; }