Fixes TUBs breaking Fiscal Sponsorship Application (#1487)

* HCB Referral Tracking

* Change referral code field to defaultValue

* Add referral alert

* Fix formatting

* Adjust copy

* Fix spacing

* HCB: Set Tubs to GFGS if referral code is used.

* Fixes Tubs being undefined

---------

Co-authored-by: Gary Tou <gary@garytou.com>
This commit is contained in:
Anish 2025-04-07 01:04:23 -07:00 committed by GitHub
parent 851e0af133
commit c936d7925e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -62,7 +62,7 @@ export default async function handler(req, res) {
'(Adults) Annual Budget': parseInt(data.eventAnnualBudget),
'HCB ID': r.id,
'Referral Code': data.referralCode,
Tubs: data.referralCode ? 'GFGS' : ''
Tubs: data.referralCode ? 'GFGS' : undefined
})
res.status(200).end()
})