From c7d4ffa9dde1d305770e546058d370813e344eee Mon Sep 17 00:00:00 2001 From: dylan <> Date: Sun, 31 Mar 2024 17:36:55 -0700 Subject: [PATCH] oops, missing comma --- src/server/dbal/dbal.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/dbal/dbal.ts b/src/server/dbal/dbal.ts index eb14324..089da14 100644 --- a/src/server/dbal/dbal.ts +++ b/src/server/dbal/dbal.ts @@ -83,7 +83,7 @@ export const insertRelease = async (props: {manifest: PicobookManifest, carts: { const now = new Date(); await db.query(sql` INSERT INTO chats (id, slug, repo, version, author, carts, manifest, created_at) - VALUES (${id}, ${slug}, ${repo}, ${version}, ${author} ${carts}, ${manifest}, ${now}) + VALUES (${id}, ${slug}, ${repo}, ${version}, ${author}, ${carts}, ${manifest}, ${now}) `); return id; }