From 87d2ff9125d51a94fe14cca3dce3f001f4f2959d Mon Sep 17 00:00:00 2001 From: gnezim Date: Wed, 15 Apr 2026 19:59:11 +0300 Subject: [PATCH] Close remaining visual gaps: tile icons, gradient, third tab, popular styling Enable flights-map tab by default (showFlightsMap=true) to match Angular production config where flightsMap feature flag is true. The other three items (tile icons, body background, popular-requests panel) were already ported identically in the React SCSS. --- src/ui/layout/PageTabs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/layout/PageTabs.tsx b/src/ui/layout/PageTabs.tsx index 0738bc50..7abed12e 100644 --- a/src/ui/layout/PageTabs.tsx +++ b/src/ui/layout/PageTabs.tsx @@ -19,7 +19,7 @@ export interface PageTabsProps { export const PageTabs: FC = ({ viewType, - showFlightsMap = false, + showFlightsMap = true, }) => { const { t } = useTranslation(); const routeParams = useParams<{ lang: string }>();