summaryrefslogtreecommitdiffhomepage
path: root/cloud
diff options
context:
space:
mode:
Diffstat (limited to 'cloud')
-rw-r--r--cloud/app/src/routes/debug/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloud/app/src/routes/debug/index.ts b/cloud/app/src/routes/debug/index.ts
index 420cff2a4..8c7eb7bd8 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
}),