From 65dc19e85a1f1f64e52277e91a8683cade9f4989 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Mon, 1 Sep 2025 02:57:47 -0400 Subject: [PATCH] wip: cloud --- cloud/app/src/routes/debug/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/app/src/routes/debug/index.ts b/cloud/app/src/routes/debug/index.ts index 420cff2a..8c7eb7bd 100644 --- a/cloud/app/src/routes/debug/index.ts +++ b/cloud/app/src/routes/debug/index.ts @@ -5,7 +5,7 @@ import { UserTable } from "@opencode/cloud-core/schema/user.sql.js" export async function GET(evt: APIEvent) { return json({ - data: Database.use(async (tx) => { + data: await Database.use(async (tx) => { const result = await tx.$count(UserTable) return result }),