From 81bf798c27c1237c3271838770f2b615eadcb46f Mon Sep 17 00:00:00 2001 From: lekss361 Date: Sun, 17 May 2026 11:52:45 +0300 Subject: [PATCH] =?UTF-8?q?fix(sf-06):=20MarketTab=20reorder=20=E2=80=94?= =?UTF-8?q?=20Competitors=20=E2=86=92=20BestLayouts=20=E2=86=92=20Velocity?= =?UTF-8?q?=20=D0=BF=D0=B5=D1=80=D0=B2=D1=8B=D0=BC=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/site-finder/MarketTab.tsx | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) 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 && }
);