summaryrefslogtreecommitdiffhomepage
path: root/packages/console/app/src/routes/debug
diff options
context:
space:
mode:
authorKit Langton <[email protected]>2026-04-15 21:56:23 -0400
committerGitHub <[email protected]>2026-04-15 21:56:23 -0400
commitd6b14e24678db678163c281257322c5a9bf0e6fa (patch)
treef3681988691b203ed5d766f47c9efb5af4f48beb /packages/console/app/src/routes/debug
parent66257663509bc12bb208c4c65f73c45206106aae (diff)
downloadopencode-d6b14e24678db678163c281257322c5a9bf0e6fa.tar.gz
opencode-d6b14e24678db678163c281257322c5a9bf0e6fa.zip
fix: prefix 32 unused parameters with underscore (#22694)
Diffstat (limited to 'packages/console/app/src/routes/debug')
-rw-r--r--packages/console/app/src/routes/debug/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/console/app/src/routes/debug/index.ts b/packages/console/app/src/routes/debug/index.ts
index 2bdd269e7..4bfb63394 100644
--- a/packages/console/app/src/routes/debug/index.ts
+++ b/packages/console/app/src/routes/debug/index.ts
@@ -3,7 +3,7 @@ import { json } from "@solidjs/router"
import { Database } from "@opencode-ai/console-core/drizzle/index.js"
import { UserTable } from "@opencode-ai/console-core/schema/user.sql.js"
-export async function GET(evt: APIEvent) {
+export async function GET(_evt: APIEvent) {
return json({
data: await Database.use(async (tx) => {
const result = await tx.$count(UserTable)