From be3f5c9d40d89a64026c8f21b75150c5650aeac1 Mon Sep 17 00:00:00 2001 From: riefive Date: Mon, 1 Dec 2025 15:09:28 +0700 Subject: [PATCH] feat: debug xfetch --- app/handlers/integration-sep-entry.handler.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/handlers/integration-sep-entry.handler.ts b/app/handlers/integration-sep-entry.handler.ts index 8f3bb86c..e4df3381 100644 --- a/app/handlers/integration-sep-entry.handler.ts +++ b/app/handlers/integration-sep-entry.handler.ts @@ -486,8 +486,9 @@ export function useIntegrationSepEntry() { } mappedValues.userName = userStore.user?.user_name || '' + const payload = { ...makeSepData(mappedValues), encounterId: null } - createSep(makeSepData(mappedValues)) + createSep(payload) .then((res) => { const body = res?.body const code = body?.metaData?.code