From 916e594f0628e95fe971a3ac872707058c194462 Mon Sep 17 00:00:00 2001 From: gnezim Date: Sat, 18 Apr 2026 15:21:25 +0300 Subject: [PATCH] Fix flights-map popup showing raw i18n key MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The arrival-city popup called t('FLIGHTS-MAP.BUY-TICKET') but the key in every locale file is FLIGHTS-MAP.BUY_TICKET_BTN (it was renamed earlier). Map popups rendered the raw key 'FLIGHTS-MAP.BUY-TICKET' instead of 'Купить билет'. Point the call at the existing key. --- src/features/flights-map/components/FlightsMapStartPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/flights-map/components/FlightsMapStartPage.tsx b/src/features/flights-map/components/FlightsMapStartPage.tsx index 568069aa..e249c17b 100644 --- a/src/features/flights-map/components/FlightsMapStartPage.tsx +++ b/src/features/flights-map/components/FlightsMapStartPage.tsx @@ -248,7 +248,7 @@ export const FlightsMapStartPage: FC = () => {
- ${t("FLIGHTS-MAP.BUY-TICKET")} + ${t("FLIGHTS-MAP.BUY_TICKET_BTN")}
`;