diff --git a/src/views/Ranking/GamesKing/index.vue b/src/views/Ranking/GamesKing/index.vue index 3b89ca9..fe34442 100644 --- a/src/views/Ranking/GamesKing/index.vue +++ b/src/views/Ranking/GamesKing/index.vue @@ -1025,11 +1025,11 @@ const getImgName = (filename) => { } const userRegion = ref(null) -const isNotArabicRegion = computed(() => { +const isNotArabicUserRegion = computed(() => { return Boolean(userRegion.value?.regionCode && userRegion.value.regionCode !== 'AR') }) const getRegionImgName = (defaultFilename, notArabicFilename) => { - return getImgName(isNotArabicRegion.value ? notArabicFilename : defaultFilename) + return getImgName(isNotArabicUserRegion.value ? notArabicFilename : defaultFilename) } const dailyPopUpImageName = computed(() => { return getRegionImgName('dailyPopUp_20260520', 'dailyPopUp_NOT_AR')