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