fix: remove unnecessary JSON.stringify for appended parameter in message handling
Deploy Function / deploy (push) Successful in 20s
Deploy Migrations to Production / deploy (push) Successful in 9s

This commit is contained in:
2026-02-24 15:26:15 -06:00
parent 44c86cfa13
commit e906fe258c
@@ -343,7 +343,7 @@ app.post(`${prefix}/conversations/:id/messages`, async (c) => {
"append_conversacion_plan",
{
p_id: conversation_plan_id,
p_append: JSON.stringify(appended),
p_append: appended,
},
);
@@ -402,7 +402,7 @@ app.post(`${prefix}/conversations/:id/messages`, async (c) => {
"append_conversacion_plan",
{
p_id: conversation_plan_id,
p_append: JSON.stringify(appended),
p_append: appended,
},
);