From 2c03d14ab5995eaf66d803c693a5475b4a9878c3 Mon Sep 17 00:00:00 2001 From: dongyoungKo Date: Wed, 28 May 2025 12:48:45 +0900 Subject: [PATCH] getMainLiveShow props type error fixed --- com.twin.app.shoptime/src/actions/mainActions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/com.twin.app.shoptime/src/actions/mainActions.js b/com.twin.app.shoptime/src/actions/mainActions.js index c0ffde5f..2adc5539 100644 --- a/com.twin.app.shoptime/src/actions/mainActions.js +++ b/com.twin.app.shoptime/src/actions/mainActions.js @@ -16,7 +16,8 @@ import { //IF-LGSP-007 export const getMainLiveShow = (props) => (dispatch, getState) => { - const { vodIncFlag } = props; + const vodIncFlag = props?.vodIncFlag; + const onSuccess = (response) => { console.log("@@ getMainLiveShow onSuccess", response.data);