diff --git a/src/config/lexics/indexLexics.tsx b/src/config/lexics/indexLexics.tsx index 2175b78f..595409e5 100644 --- a/src/config/lexics/indexLexics.tsx +++ b/src/config/lexics/indexLexics.tsx @@ -9,6 +9,7 @@ const matchPopupLexics = { episode_duration: 13410, events: 1020, from_end_match: 15396, + from_price: 3992, from_start_match: 15395, gk: 3515, go_back_to_match: 13405, diff --git a/src/features/BuyMatchPopup/components/SelectSubscription/index.tsx b/src/features/BuyMatchPopup/components/SelectSubscription/index.tsx index 67bd9741..b925a148 100644 --- a/src/features/BuyMatchPopup/components/SelectSubscription/index.tsx +++ b/src/features/BuyMatchPopup/components/SelectSubscription/index.tsx @@ -31,6 +31,8 @@ import { Pass, } from '../SubscriptionsList/styled' +import { Price } from './styled' + export const ChooseSub = styled.div` font-weight: 600; font-size: 16px; @@ -87,27 +89,31 @@ export const SelectSubscriptionStep = () => { - { - map(initialSubscription.data, (subscription, index) => ( - onItemClick(subscription, index)} - active={active === index} - > - - - - - - - - - - - - - )) - } + {map(initialSubscription.data, (subscription, index) => ( + onItemClick(subscription, index)} + active={active === index} + > + + + + + + + + + + + + + + + ))}