[워닝 제거]
- 공백 워닝, == 와 ===의 워닝처리건.
This commit is contained in:
@@ -151,7 +151,6 @@ export const URLS = {
|
|||||||
// foryou controller
|
// foryou controller
|
||||||
JUSTFORYOU: "/lgsp/v1/recommend/justforyou.lge",
|
JUSTFORYOU: "/lgsp/v1/recommend/justforyou.lge",
|
||||||
|
|
||||||
|
|
||||||
// emp controller
|
// emp controller
|
||||||
GET_SHOPTIME_TERMS: "/lgsp/v1/emp/shoptime/terms.lge",
|
GET_SHOPTIME_TERMS: "/lgsp/v1/emp/shoptime/terms.lge",
|
||||||
SET_MYPAGE_TERMS_AGREE: "/lgsp/v1/mypage/terms/agree.lge",
|
SET_MYPAGE_TERMS_AGREE: "/lgsp/v1/mypage/terms/agree.lge",
|
||||||
@@ -274,11 +273,11 @@ const getRicCode = (country, ricCodeSetting) => {
|
|||||||
if (ricCodeSetting !== "system") {
|
if (ricCodeSetting !== "system") {
|
||||||
return ricCodeSetting;
|
return ricCodeSetting;
|
||||||
}
|
}
|
||||||
if (country == "US") {
|
if (country === "US") {
|
||||||
return "aic";
|
return "aic";
|
||||||
} else if (country == "DE" || country == "GB") {
|
} else if (country === "DE" || country === "GB") {
|
||||||
return "eic";
|
return "eic";
|
||||||
} else if (country == "RU") {
|
} else if (country === "RU") {
|
||||||
return "ruc";
|
return "ruc";
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
Reference in New Issue
Block a user