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,