diff --git a/cloud/app/src/routes/workspace/[id].tsx b/cloud/app/src/routes/workspace/[id].tsx index dfe305bb..0eb18fca 100644 --- a/cloud/app/src/routes/workspace/[id].tsx +++ b/cloud/app/src/routes/workspace/[id].tsx @@ -47,6 +47,7 @@ const getBillingInfo = query(async () => { const billing = await Billing.get() const payments = await Billing.payments() const usage = await Billing.usages() + console.log({ user, billing, payments, usage }) return { user, billing, payments, usage } }) }, "billingInfo")