Update project name

This commit is contained in:
Dries Augustyns
2025-12-05 09:09:44 +01:00
parent f88e6f439d
commit 7d90bef8f4
+2 -1
View File
@@ -276,8 +276,9 @@ export class Webhooks {
}, },
}); });
// add 1 eur/usd in credit in return for onboarding fee // Update Stripe customer name to match project name and add credit for onboarding fee
await stripe.customers.update(customerId, { await stripe.customers.update(customerId, {
name: updatedProject.name,
balance: -100, balance: -100,
}); });