diff --git a/frontend/src/components/site-finder/MarketTab.tsx b/frontend/src/components/site-finder/MarketTab.tsx index cfbc4df5..85f92eae 100644 --- a/frontend/src/components/site-finder/MarketTab.tsx +++ b/frontend/src/components/site-finder/MarketTab.tsx @@ -28,23 +28,20 @@ export function MarketTab({ data }: Props) { return (
- {/* D4 (#36) — Pipeline 24mo */} - {data.pipeline_24mo && } - - {/* Market trend */} - {hasTrend && ( -
- + {/* Competitors */} + {data.competitors.length > 0 && ( +
+ Конкуренты +
)} + {/* Issue #113 — data-driven ТЗ на проектирование */} + + {/* D2 (#34) — Velocity-score */} {hasVelocity && (
)} - {/* Competitors */} - {data.competitors.length > 0 && ( -
- Конкуренты - + {/* Market trend */} + {hasTrend && ( +
+
)} + {/* D4 (#36) — Pipeline 24mo */} + {data.pipeline_24mo && } + {/* Success recommendation */} {hasRecommendation && (
@@ -82,9 +85,6 @@ export function MarketTab({ data }: Props) {
)} - {/* Issue #113 — data-driven ТЗ на проектирование */} - - {!hasAny && }
);