From b10247509a18ba79879400e999feaf99a8327d4a Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sat, 3 Jan 2026 00:05:11 +0000 Subject: [PATCH] Fixed , bug --- src/utils/notion.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/notion.js b/src/utils/notion.js index 2bd4c0b..2e3162b 100644 --- a/src/utils/notion.js +++ b/src/utils/notion.js @@ -63,7 +63,7 @@ export async function addToNotionDataSource( } else if (key === "Features") { notionProperties[key] = { multi_select: value.map((feature) => ({ - name: feature, + name: feature.replace(/,/g, ";"), })), }; } else if (key === "Message" && value != "") { @@ -188,7 +188,7 @@ export async function updateNotionPage( } else if (key === "Features") { notionProperties[key] = { multi_select: value.map((feature) => ({ - name: feature, + name: feature.replace(/,/g, ";"), })), }; } else if (typeof value === "string" && value != "") {