From 1add3676218484bcaac730ff791f32de91cf90b1 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 2 Aug 2026 22:32:48 -0400 Subject: [PATCH] chore: remove stray debug console.logs from createScaffoldPage Co-Authored-By: Claude Opus 4.8 --- db.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/db.js b/db.js index dc80bf3..d4c2b90 100644 --- a/db.js +++ b/db.js @@ -467,9 +467,7 @@ function createScaffoldPage(routeId, content=null) { const route = getRoute(routeId) const endpoint = buildScaffoldUrl(route.path, route.url_params, route.query_params); content = getDefaultScaffoldContentByVerb(endpoint, route.verb); - console.log("gabga", content, route, endpoint) } - console.log(content, "content") const stmt = db.prepare( "INSERT INTO scaffold_pages (route_id, content) VALUES (?, ?)" );