chore: remove stray debug console.logs from createScaffoldPage

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Your Name 2026-08-02 22:32:48 -04:00
parent 386e65fa88
commit 1add367621

2
db.js
View file

@ -467,9 +467,7 @@ function createScaffoldPage(routeId, content=null) {
const route = getRoute(routeId) const route = getRoute(routeId)
const endpoint = buildScaffoldUrl(route.path, route.url_params, route.query_params); const endpoint = buildScaffoldUrl(route.path, route.url_params, route.query_params);
content = getDefaultScaffoldContentByVerb(endpoint, route.verb); content = getDefaultScaffoldContentByVerb(endpoint, route.verb);
console.log("gabga", content, route, endpoint)
} }
console.log(content, "content")
const stmt = db.prepare( const stmt = db.prepare(
"INSERT INTO scaffold_pages (route_id, content) VALUES (?, ?)" "INSERT INTO scaffold_pages (route_id, content) VALUES (?, ?)"
); );