diff --git a/com.twin.app.shoptime/resources/de/strings.json b/com.twin.app.shoptime/resources/de/strings.json index 57aad78e..e019cc4d 100644 --- a/com.twin.app.shoptime/resources/de/strings.json +++ b/com.twin.app.shoptime/resources/de/strings.json @@ -3,7 +3,9 @@ "Exit Shop Time": "Shop Time verlassen", "This is an unsupported country.": "Nicht unterstütztes Land.", "Yes": "Ja", + "YES": "Ja", "No": "Nein", + "NO": "Nein", "Remove from Favorite": "Aus meiner Favoritenliste entfernt", "Add to Favorite": "Zu meiner Favoritenliste hinzugefügt.", "View More": "Mehr sehen", @@ -24,6 +26,7 @@ "Failed to sent text to {mobileNumber}": "SMS senden an {mobileNumber} fehlgeschlagen", "Agree and Send": "Zustimmen und senden", "Cancel": "Abbrechen", + "CANCEL": "Abbrechen", "OK": "OK", "SOLD OUT": "Ausverkauft", "TOP": "TOP", diff --git a/com.twin.app.shoptime/resources/en/strings.json b/com.twin.app.shoptime/resources/en/strings.json index 61b93b78..1e9e5209 100644 --- a/com.twin.app.shoptime/resources/en/strings.json +++ b/com.twin.app.shoptime/resources/en/strings.json @@ -3,7 +3,9 @@ "Exit Shop Time": "Exit Shop Time", "This is an unsupported country.": "This is an unsupported country.", "Yes": "Yes", + "YES": "Yes", "No": "No", + "NO": "No", "Remove from Favorite": "Remove from Favorite", "Add to Favorite": "Add to Favorite", "View More": "View More", @@ -24,6 +26,7 @@ "Failed to sent text to {mobileNumber}": "Failed to sent text to {mobileNumber}", "Agree and Send": "Agree and Send", "Cancel": "Cancel", + "CANCEL": "Cancel", "OK": "OK", "SOLD OUT": "SOLD OUT", "TOP": "TOP", diff --git a/com.twin.app.shoptime/resources/gb/strings.json b/com.twin.app.shoptime/resources/gb/strings.json index 443d64b3..c5d720f1 100644 --- a/com.twin.app.shoptime/resources/gb/strings.json +++ b/com.twin.app.shoptime/resources/gb/strings.json @@ -3,7 +3,9 @@ "Exit Shop Time": "Exit Shop Time", "This is an unsupported country.": "This is an unsupported country.", "Yes": "Yes", + "YES": "Yes", "No": "No", + "NO": "No", "Remove from Favorite": "Remove from Favorite", "Add to Favorite": "Add to Favorite", "View More": "View More", @@ -24,6 +26,7 @@ "Failed to sent text to {mobileNumber}": "Failed to sent text to {mobileNumber}", "Agree and Send": "Agree and Send", "Cancel": "Cancel", + "CANCEL": "Cancel", "OK": "OK", "SOLD OUT": "SOLD OUT", "TOP": "TOP", diff --git a/com.twin.app.shoptime/resources/ru/strings.json b/com.twin.app.shoptime/resources/ru/strings.json index 91f36657..4f798d41 100644 --- a/com.twin.app.shoptime/resources/ru/strings.json +++ b/com.twin.app.shoptime/resources/ru/strings.json @@ -3,7 +3,9 @@ "Exit Shop Time": "Выйти из Shop on TV", "This is an unsupported country.": "Сервис не поддерживается в данной стране.", "Yes": "Да", + "YES": "Да", "No": "Нет", + "NO": "Нет", "Remove from Favorite": "Удалить из Избранного", "Add to Favorite": "Добавить в Избранное", "View More": "Смотреть ещё", @@ -24,6 +26,7 @@ "Failed to sent text to {mobileNumber}": "Ошибка при отправке сообщения на {mobileNumber}", "Agree and Send": "Согласен и отправить", "Cancel": "Отмена", + "CANCEL": "Отмена", "OK": "OK", "SOLD OUT": "Продано", "TOP": "ВВЕРХ", diff --git a/com.twin.app.shoptime/src/components/TButton/TButton.jsx b/com.twin.app.shoptime/src/components/TButton/TButton.jsx index 5f5289c9..883ad22e 100644 --- a/com.twin.app.shoptime/src/components/TButton/TButton.jsx +++ b/com.twin.app.shoptime/src/components/TButton/TButton.jsx @@ -131,7 +131,7 @@ function TButtonBase({ aria-hidden={ariaHidden} spotlightDisabled={spotlightDisabled} > - {type === "topButton" &&
TOP
} + {type === "topButton" &&
{$L("TOP")}
} {type !== "topButton" && (withMarquee ? ( diff --git a/com.twin.app.shoptime/src/components/TButton/TButton.module.less b/com.twin.app.shoptime/src/components/TButton/TButton.module.less index fe8ba6aa..29f95f31 100644 --- a/com.twin.app.shoptime/src/components/TButton/TButton.module.less +++ b/com.twin.app.shoptime/src/components/TButton/TButton.module.less @@ -241,19 +241,16 @@ .size(@w: 120px, @h: 120px); border-radius: 100%; background-image: url("../../../assets/images/rectangle-639@3x.png"); - background-position: 44px 31px; + background-position: center 31px; background-size: 32px 17px; background-repeat: no-repeat; display: block; margin: 60px auto; > div.topText { - width: 56px; - height: 22px; - display: inline-block; - line-height: normal; + text-align: center; font-size: 30px; - margin-top: 60px; - margin-left: 22px; + padding-top: 60px; + line-height: 1; } } diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedBestSeller/FeaturedBestSeller.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedBestSeller/FeaturedBestSeller.jsx index 86c15489..3927e6ec 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedBestSeller/FeaturedBestSeller.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedBestSeller/FeaturedBestSeller.jsx @@ -10,7 +10,7 @@ import css from "./FeaturedBestSeller.module.less"; import FeaturedBestSellerList from "./FeaturedBestSellerList/FeaturedBestSellerList"; const STRING_CONF = { - BEST_SELLER: $L("BEST SELLER"), + BEST_SELLER: "BEST SELLER", }; const Container = SpotlightContainerDecorator( @@ -69,7 +69,7 @@ export default memo(function FeaturedBestSeller({ data-wheel-point > diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedBrandsPanel.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedBrandsPanel.jsx index 37d78088..7c437290 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedBrandsPanel.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedBrandsPanel.jsx @@ -51,16 +51,14 @@ import TodaysDeals from "./TodaysDeals/TodaysDeals"; import UpComing from "./UpComing/UpComing"; const STRING_CONF = { - CANCEL: $L("CANCEL"), - OK: $L("OK"), - YES: $L("YES"), - NO_SHOW_MESSAGE: $L("This show doesn’t exist anymore"), - REMINDER_ON_OFF_MESSAGE: $L( - "Reminder Notification is turned off. Select Yes to turn on reminders." - ), - UPCOMING_TIME_CONFLICT_MESSAGE: $L( - "A Reminder is already set on the selected schedule. Press OK to overwrite the existing Reminder." - ), + CANCEL: "CANCEL", + OK: "OK", + YES: "YES", + NO_SHOW_MESSAGE: "This show doesn’t exist anymore", + REMINDER_ON_OFF_MESSAGE: + "Reminder Notification is turned off. Select Yes to turn on reminders.", + UPCOMING_TIME_CONFLICT_MESSAGE: + "A Reminder is already set on the selected schedule. Press OK to overwrite the existing Reminder.", }; const TEMPLATE_CODE_CONF = { @@ -151,11 +149,11 @@ const findSelector = (selector, maxAttempts = 5, currentAttempts = 0) => { const getMessageByPopupType = (type) => { switch (type) { case ACTIVE_POPUP.reminderPopup: - return STRING_CONF.REMINDER_ON_OFF_MESSAGE; + return $L(STRING_CONF.REMINDER_ON_OFF_MESSAGE); case ACTIVE_POPUP.timeConflictPopup: - return STRING_CONF.UPCOMING_TIME_CONFLICT_MESSAGE; + return $L(STRING_CONF.UPCOMING_TIME_CONFLICT_MESSAGE); case ACTIVE_POPUP.noShowPopup: - return STRING_CONF.NO_SHOW_MESSAGE; + return $L(STRING_CONF.NO_SHOW_MESSAGE); default: return; } @@ -874,11 +872,12 @@ export default function FeaturedBrandsPanel({ diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedCategory/FeaturedCategoryNav/FeaturedCategoryNav.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedCategory/FeaturedCategoryNav/FeaturedCategoryNav.jsx index 2a094e4d..a6fc58ac 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedCategory/FeaturedCategoryNav/FeaturedCategoryNav.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedCategory/FeaturedCategoryNav/FeaturedCategoryNav.jsx @@ -25,7 +25,7 @@ const Container = SpotlightContainerDecorator( ); const STRING_CONF = { - ALL: $L("ALL"), + ALL: "ALL", }; export default memo(function FeaturedCategoryNav({ @@ -172,11 +172,7 @@ export default memo(function FeaturedCategoryNav({ return; } }, - [ - cursorVisible, - handleItemFocus, - handleScrollReset - ] + [cursorVisible, handleItemFocus, handleScrollReset] ); const selectedText = !selectedCatCdLv1 ? "Selected " : ""; const allLabeltext = @@ -204,7 +200,7 @@ export default memo(function FeaturedCategoryNav({ type={TYPES.oneDepthCategory} ariaLabel={allLabeltext} > - {STRING_CONF.ALL} + {$L(STRING_CONF.ALL)} {brandCategoryInfo.map(({ catCdLv1, catNmLv1 }, itemIndex) => ( diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedCategory/FeaturedSubCategoryNav/FeaturedSubCategoryNav.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedCategory/FeaturedSubCategoryNav/FeaturedSubCategoryNav.jsx index e58498be..820450b0 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedCategory/FeaturedSubCategoryNav/FeaturedSubCategoryNav.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedCategory/FeaturedSubCategoryNav/FeaturedSubCategoryNav.jsx @@ -21,8 +21,8 @@ const Container = SpotlightContainerDecorator( ); const STRING_CONF = { - ALL: $L("ALL"), - MORE: $L("MORE"), + ALL: "ALL", + MORE: "MORE", }; const MAX_LENGTH = 20; @@ -156,7 +156,7 @@ export default memo(function FeaturedSubCategoryNav({ ariaLabel={allLabeltext} withMarquee > - {STRING_CONF.ALL} + {$L(STRING_CONF.ALL)} {selectedCategoryLv2Infos @@ -201,7 +201,7 @@ export default memo(function FeaturedSubCategoryNav({ onClick={goToSearchPanel} type={TYPES.twoDepthCategory} > - {STRING_CONF.MORE + " +"} + {$L(STRING_CONF.MORE) + " +"} )} diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedCreators/FeaturedCreators.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedCreators/FeaturedCreators.jsx index 1e531df7..4c4a224c 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedCreators/FeaturedCreators.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/FeaturedCreators/FeaturedCreators.jsx @@ -11,7 +11,7 @@ import FeaturedCreatorsContents from "./FeaturedCreatorsContents/FeaturedCreator import FeaturedCreatorsNav from "./FeaturedCreatorsNav/FeaturedCreatorsNav"; const STRING_CONF = { - FEATURED_CREATORS: $L("FEATURED CREATORS"), + FEATURED_CREATORS: "FEATURED CREATORS", }; const Container = SpotlightContainerDecorator( { leaveFor: { right: "" }, enterTo: null }, @@ -73,7 +73,7 @@ export default memo(function FeaturedCreators({ data-wheel-point > diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/LiveChannels/LiveChannelsErrorContents/LiveChannelsErrorContents.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/LiveChannels/LiveChannelsErrorContents/LiveChannelsErrorContents.jsx index 6f30f20c..f10fdb61 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/LiveChannels/LiveChannelsErrorContents/LiveChannelsErrorContents.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/LiveChannels/LiveChannelsErrorContents/LiveChannelsErrorContents.jsx @@ -5,8 +5,8 @@ import { $L } from "../../../../utils/helperMethods"; import css from "./LiveChannelsErrorContents.module.less"; const STRING_CONF = { - TITLE_FOR_DELAY: $L("An error occurred."), - MESSAGE_FOR_DELAY: $L("Please try again in 30 seconds."), + TITLE_FOR_DELAY: "An error occurred.", + MESSAGE_FOR_DELAY: "Please try again in 30 seconds.", }; export default function LiveChannelsErrorContents() { @@ -18,8 +18,8 @@ export default function LiveChannelsErrorContents() { alt="Service is delayed. Please try again in 30 seconds." /> -

{STRING_CONF.TITLE_FOR_DELAY}

-

{STRING_CONF.MESSAGE_FOR_DELAY}

+

{$L(STRING_CONF.TITLE_FOR_DELAY)}

+

{$L(STRING_CONF.MESSAGE_FOR_DELAY)}

); } diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/LiveChannels/NoLiveContents/NoLiveCard/NoLiveCard.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/LiveChannels/NoLiveContents/NoLiveCard/NoLiveCard.jsx index 3ee4d40f..a31789a1 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/LiveChannels/NoLiveContents/NoLiveCard/NoLiveCard.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/LiveChannels/NoLiveContents/NoLiveCard/NoLiveCard.jsx @@ -15,10 +15,10 @@ import css from "./NoLiveCard.module.less"; import { getMyUpcomingAlertShow } from "../../../../../actions/myPageActions"; const STRING_CONF = { - RECENTLY_AIRED: $L("Recently Aired"), - REMOVE_REMINDER: $L("Remove Reminder"), - SET_REMINDER: $L("Set a Reminder"), - WITH_HOST: $L("With Host"), + RECENTLY_AIRED: "Recently Aired", + REMOVE_REMINDER: "Remove Reminder", + SET_REMINDER: "Set a Reminder", + WITH_HOST: "With Host", }; export default memo(function NoLiveCard({ @@ -152,7 +152,7 @@ export default memo(function NoLiveCard({ />

{showNm}

-

{hstNm ? STRING_CONF.WITH_HOST + " " + hstNm : ""}

+

{hstNm ? $L(STRING_CONF.WITH_HOST) + " " + hstNm : ""}

{isReserved - ? STRING_CONF.REMOVE_REMINDER - : STRING_CONF.SET_REMINDER} + ? $L(STRING_CONF.REMOVE_REMINDER) + : $L(STRING_CONF.SET_REMINDER)} - {STRING_CONF.RECENTLY_AIRED} + {$L(STRING_CONF.RECENTLY_AIRED)}
diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/QuickMenu/QuickMenuItem/QuickMenuItem.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/QuickMenu/QuickMenuItem/QuickMenuItem.jsx index c87af2f4..21d4a4a7 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/QuickMenu/QuickMenuItem/QuickMenuItem.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/QuickMenu/QuickMenuItem/QuickMenuItem.jsx @@ -16,7 +16,7 @@ import css from "./QuickMenuItem.module.less"; const SpottableComponent = Spottable("li"); const STRING_CONF = { - NEW: $L("NEW"), + NEW: "NEW", }; export default memo(function QuickMenuItem({ @@ -99,7 +99,7 @@ export default memo(function QuickMenuItem({ fallbackSrc={IcPartnersDefault} ariaLabel={logoImgAlt} /> - {newFlag === "Y" &&
{STRING_CONF.NEW}
} + {newFlag === "Y" &&
{$L(STRING_CONF.NEW)}
} ); }); diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/QuickMenu/QuickMenuItem/QuickMenuItem.module.less b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/QuickMenu/QuickMenuItem/QuickMenuItem.module.less index 88946f6b..02ed007a 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/QuickMenu/QuickMenuItem/QuickMenuItem.module.less +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/QuickMenu/QuickMenuItem/QuickMenuItem.module.less @@ -16,12 +16,13 @@ > div { .position(@position: absolute, @top:6px, @right: 0); z-index: 10; - .size(@w: 60px, @h: 30px); + padding: 6px; border-radius: 6px; background-color: #f00; .font(@fontFamily: @arialFontBold, @fontSize: 18px); color: @COLOR_WHITE; text-align: center; + line-height: 1; } &:focus { diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/RecommendedShows/RecommendedShows.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/RecommendedShows/RecommendedShows.jsx index b710a831..b3369a00 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/RecommendedShows/RecommendedShows.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/RecommendedShows/RecommendedShows.jsx @@ -13,7 +13,7 @@ import RecommendedShowsContents from "./RecommendedShowsContents/RecommendedShow import RecommendedShowsNav from "./RecommendedShowsNav/RecommendedShowsNav"; const STRING_CONF = { - RECOMMENDED_SHOWS: $L("RECOMMENDED SHOWS"), + RECOMMENDED_SHOWS: "RECOMMENDED SHOWS", }; const Container = SpotlightContainerDecorator( @@ -94,7 +94,7 @@ export default memo(function RecommendedShows({ data-wheel-point > diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/Series/Series.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/Series/Series.jsx index 9c4a8fd4..4151652f 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/Series/Series.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/Series/Series.jsx @@ -11,7 +11,7 @@ import SeriesContents from "./SeriesContents/SeriesContents"; import SeriesNav from "./SeriesNav/SeriesNav"; const STRING_CONF = { - SERIES: $L("SERIES"), + SERIES: "SERIES", }; const Container = SpotlightContainerDecorator( @@ -83,7 +83,7 @@ export default memo(function Series({ spotlightId={spotlightId} data-wheel-point > - + - {STRING_CONF.ALL} + {$L(STRING_CONF.ALL)} {brandSeriesInfo.map(({ seriesId, seriesNm }, index) => ( diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/Showroom/Showroom.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/Showroom/Showroom.jsx index 76ff97ac..63c78814 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/Showroom/Showroom.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/Showroom/Showroom.jsx @@ -13,7 +13,7 @@ import ShowroomContents from "./ShowroomContents/ShowroomContents"; import ShowroomNav from "./ShowroomNav/ShowroomNav"; const STRING_CONF = { - SHOWROOM: $L("SHOWROOM"), + SHOWROOM: "SHOWROOM", }; const Container = SpotlightContainerDecorator( @@ -89,7 +89,7 @@ export default memo(function Showroom({ spotlightId={spotlightId} data-wheel-point > - + diff --git a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/UpComing/UpComingList/UpComingCard/UpComingCard.jsx b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/UpComing/UpComingList/UpComingCard/UpComingCard.jsx index aea4082d..4cd8554f 100644 --- a/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/UpComing/UpComingList/UpComingCard/UpComingCard.jsx +++ b/com.twin.app.shoptime/src/views/FeaturedBrandsPanel/UpComing/UpComingList/UpComingCard/UpComingCard.jsx @@ -12,13 +12,12 @@ import css from "./UpComingCard.module.less"; const SpottableComponent = Spottable("div"); const STRING_CONF = { - REMINDER_SETTED: $L("Reminder Setted"), - REMOVE_REMINDER: $L("Remove Reminder"), - SET_REMINDER: $L("Set a Reminder"), - TURNED_OFF_MESSAGE: $L( - "Reminder Notification is turned off. Select Yes to turn on reminders." - ), - WITH_HOST: $L("With Host"), + REMINDER_SETTED: "Reminder Setted", + REMOVE_REMINDER: "Remove Reminder", + SET_REMINDER: "Set a Reminder", + TURNED_OFF_MESSAGE: + "Reminder Notification is turned off. Select Yes to turn on reminders.", + WITH_HOST: "With Host", }; export default memo(function UpComingCard({ @@ -79,17 +78,19 @@ export default memo(function UpComingCard({ src={isReserved ? IcUpcomingsReserved : IcUpcomingsNormal} alt="" /> - {isReserved && {STRING_CONF.REMINDER_SETTED}} + {isReserved && {$L(STRING_CONF.REMINDER_SETTED)}} )}

{showNm}

- {hstNm &&

{STRING_CONF.WITH_HOST + " " + hstNm}

} + {hstNm &&

{$L(STRING_CONF.WITH_HOST) + " " + hstNm}

} {isFocused && ( )} diff --git a/com.twin.app.shoptime/src/views/TrendingNowPanel/TrendingNowPanel.jsx b/com.twin.app.shoptime/src/views/TrendingNowPanel/TrendingNowPanel.jsx index 05ead548..517e3bd2 100644 --- a/com.twin.app.shoptime/src/views/TrendingNowPanel/TrendingNowPanel.jsx +++ b/com.twin.app.shoptime/src/views/TrendingNowPanel/TrendingNowPanel.jsx @@ -33,8 +33,8 @@ const Container = SpotlightContainerDecorator( "div" ); const STRING_CONF = { - POPULAR_SHOW: $L("POPULAR SHOW"), - BEST_SELLER: $L("BEST SELLER"), + POPULAR_SHOW: "POPULAR SHOW", + BEST_SELLER: "BEST SELLER", }; export default function TrendingNowPanel({ panelInfo, spotlightId }) { const { sendLogGNB } = useLogService(); @@ -270,7 +270,7 @@ export default function TrendingNowPanel({ panelInfo, spotlightId }) { data-wheel-point={true} >