diff options
| author | Dax Raad <[email protected]> | 2025-09-01 02:57:47 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-09-01 02:57:47 -0400 |
| commit | 65dc19e85a1f1f64e52277e91a8683cade9f4989 (patch) | |
| tree | 993415f9ad19878e9b236c2e9e289c9fd4f2dadb /cloud/app/src | |
| parent | cfcfceca6d1a0658cecf6f343a283028560a8fde (diff) | |
| download | opencode-65dc19e85a1f1f64e52277e91a8683cade9f4989.tar.gz opencode-65dc19e85a1f1f64e52277e91a8683cade9f4989.zip | |
wip: cloud
Diffstat (limited to 'cloud/app/src')
| -rw-r--r-- | cloud/app/src/routes/debug/index.ts | 2 |
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 }), |
