Me when formatting problems

This commit is contained in:
2026-02-25 04:33:51 -05:00
parent c3eda8245f
commit ba88360636
5 changed files with 14 additions and 11 deletions

View File

@@ -19,5 +19,7 @@ export async function onRequestPost(context: RequestContext) {
await context.env.D1.prepare(
"INSERT INTO game_mod_notes (content, created_at, created_by, id, target) VALUES (?, ?, ?, ?, ?);",
).bind(content, Date.now(), context.data.current_user.id, id, target).first();
)
.bind(content, Date.now(), context.data.current_user.id, id, target)
.first();
}