From af30b88d367751c9e05a735e4a0467a96238ef47 Mon Sep 17 00:00:00 2001 From: Farber Denis <42491613+Bombamuerta@users.noreply.github.com> Date: Fri, 19 Nov 2021 13:49:16 +0300 Subject: [PATCH] fix(#ott1963): buy match popup lexics fix (#569) Co-authored-by: Farber Denis --- src/config/lexics/indexLexics.tsx | 2 ++ src/features/BuyMatchPopup/store/config.tsx | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/config/lexics/indexLexics.tsx b/src/config/lexics/indexLexics.tsx index 4c57a709..4711131a 100644 --- a/src/config/lexics/indexLexics.tsx +++ b/src/config/lexics/indexLexics.tsx @@ -51,6 +51,8 @@ const buyMatchPopupLexics = { pass_league: 15065, pass_match_access: 15067, pass_team: 15066, + pass_team_away: 15909, + pass_team_home: 15908, pay: 15073, payment: 14096, payment_confirmation: 14094, diff --git a/src/features/BuyMatchPopup/store/config.tsx b/src/features/BuyMatchPopup/store/config.tsx index 5c206c63..a1de5c2e 100644 --- a/src/features/BuyMatchPopup/store/config.tsx +++ b/src/features/BuyMatchPopup/store/config.tsx @@ -1,7 +1,7 @@ export const passLexics = { all: 'pass_league', - team_away: 'pass_team', - team_home: 'pass_team', + team_away: 'pass_team_away', + team_home: 'pass_team_home', team1: 'pass_team', team2: 'pass_team', }