[워닝 제거]

- 공백 워닝, == 와 ===의 워닝처리건.
This commit is contained in:
junghoon86.park
2025-12-12 13:08:09 +09:00
parent ad8fc598b4
commit 9c2ecbaa57

View File

@@ -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;