[App] showLoadingPanel

Detail Notes :
 
1. Loading 테스트를 위해 Dispatch로 showLoadingPanel 날리는 부분 주석
This commit is contained in:
jangheon Pyo
2024-04-11 14:40:20 +09:00
parent b052dca5ae
commit 33509fb0a5

View File

@@ -74,7 +74,7 @@ function AppBase(props) {
dispatch(handleDeepLink(launchParams.contentTarget));
}
clearLaunchParams();
dispatch(changeAppStatus({ showLoadingPanel: { show: false } }));
// dispatch(changeAppStatus({ showLoadingPanel: { show: false } }));
}
},
[dispatch, httpHeader]
@@ -148,9 +148,9 @@ function AppBase(props) {
if (!httpHeader || !appStatus.deviceId) {
} else {
//계정정보 변경시 또는 초기 로딩시
dispatch(
changeAppStatus({ showLoadingPanel: { show: true, type: "launching" } })
);
// dispatch(
// changeAppStatus({ showLoadingPanel: { show: true, type: "launching" } })
// );
dispatch(getAuthenticationCode());
dispatch(
getHomeTerms({
@@ -170,7 +170,7 @@ function AppBase(props) {
dispatch(
pushPanel({ name: Config.panel_names.INTRO_PANEL, panelInfo: {} })
);
dispatch(changeAppStatus({ showLoadingPanel: { show: false } }));
// dispatch(changeAppStatus({ showLoadingPanel: { show: false } }));
}
}
}, [introTermsAgree, dispatch]);