debug code

This commit is contained in:
yonghyon
2024-06-20 18:09:22 +09:00
parent 31d212e527
commit c7ecfa6804
2 changed files with 5 additions and 0 deletions

View File

@@ -112,6 +112,10 @@ export const TAxios = (
//todo "NotServiceCountry"
return;
}
if(res?.data?.retCode === 604 ){
//todo "NotServiceLanguage"
return;
}
if (onSuccess) onSuccess(res);
})
.catch((error) => {

View File

@@ -23,6 +23,7 @@ export default function DebugPanel({spotlightId}) {
v.push({title: 'Version(App)', value: appinfo.version});
v.push({title: 'WebOS', value: appStatus.webOSVersion+"("+httpHeader?.os_ver+")"});
v.push({title: 'serverHOST', value: appStatus.serverHOST});
v.push({title: 'httpHeader', value: JSON.stringify(httpHeader)});
v.push({title: ' ', value: ' '});
return v;
}, [appStatus, httpHeader]);