From 3b6907aa6f93bfd42b69d15d9664f9a5b0d7067f Mon Sep 17 00:00:00 2001 From: LiaoYijun Date: Tue, 2 Sep 2025 14:53:19 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9Bfix:=20SecondRemind?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/OrderStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/OrderStore.js b/src/stores/OrderStore.js index 4528a99..7f7e01a 100644 --- a/src/stores/OrderStore.js +++ b/src/stores/OrderStore.js @@ -320,7 +320,7 @@ const transferRemind2Checklist = (remindstate) => { export const setRemindStateAction = async (orderId, checkedValue) => { const finalState = { 'FirstRemind': checkedValue.includes('FirstRemind') ? 1 : 0, - 'SecondRemind': checkedValue.includes('SendFirstRemind') ? 1 : 0, + 'SecondRemind': checkedValue.includes('SecondRemind') ? 1 : 0, 'ThirdRemind': checkedValue.includes('ThirdRemind') ? 1 : 0, 'important': checkedValue.includes('important') ? 1 : 0, 'sendsurvey': checkedValue.includes('sendsurvey') ? 1 : 0,