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; }