From 6d22ade771399ef2cee941c6beeb975c9ec080cb Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Mon, 1 Sep 2025 03:13:05 -0400 Subject: [PATCH] wip: cloud --- cloud/app/src/routes/workspace/[id].tsx | 1 + 1 file changed, 1 insertion(+) 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")