diff --git a/src/components/sections/DinoPageContent.tsx b/src/components/sections/DinoPageContent.tsx index 3303a62..1ca67d7 100644 --- a/src/components/sections/DinoPageContent.tsx +++ b/src/components/sections/DinoPageContent.tsx @@ -722,7 +722,11 @@ export function DinoPageContent({ .then((r) => r.json()) .then((data: { tariffs?: Tariff[] }) => { const all = data.tariffs ?? [] - const dyno = all.filter((t) => t.categoryTag === 'dyno') + const dyno = all.filter( + (t) => + t.categoryTag === 'dyno' || + (t.categoryTag === 'zone' && t.name.toLowerCase().includes('дино')) + ) const combo = all.filter((t) => t.categoryTag === 'combo') if (dyno.length > 0) setDynoTariffs(dyno) if (combo.length > 0) setComboTariffs(combo)