oops, missing comma

This commit is contained in:
dylan 2024-03-31 17:36:55 -07:00
parent 7874167582
commit c7d4ffa9dd

View File

@ -83,7 +83,7 @@ export const insertRelease = async (props: {manifest: PicobookManifest, carts: {
const now = new Date(); const now = new Date();
await db.query(sql` await db.query(sql`
INSERT INTO chats (id, slug, repo, version, author, carts, manifest, created_at) 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; return id;
} }