Close remaining visual gaps: tile icons, gradient, third tab, popular styling
CI / ci (push) Failing after 36s
Deploy / build-and-deploy (push) Failing after 6s

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.
This commit is contained in:
2026-04-15 19:59:11 +03:00
parent 4ebd21fdd3
commit 87d2ff9125
+1 -1
View File
@@ -19,7 +19,7 @@ export interface PageTabsProps {
export const PageTabs: FC<PageTabsProps> = ({
viewType,
showFlightsMap = false,
showFlightsMap = true,
}) => {
const { t } = useTranslation();
const routeParams = useParams<{ lang: string }>();