From 9a9b35977cff83d4f5015b4a1fa203343070f2e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B0=D0=BB=D0=B8=D0=BC=D0=BE=D0=B2=20=D0=A0=D1=83?= =?UTF-8?q?=D1=81=D1=82=D0=B0=D0=BC?= Date: Sat, 10 Jan 2026 20:44:27 +0300 Subject: [PATCH] 3 --- src/components/LayoutStep.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/LayoutStep.tsx b/src/components/LayoutStep.tsx index 526c82e..dcf746c 100644 --- a/src/components/LayoutStep.tsx +++ b/src/components/LayoutStep.tsx @@ -1,7 +1,7 @@ import React, { useRef, useState, useMemo } from 'react'; import { AppConfig, LayoutSplits, Partition } from '../types'; -// ИСПРАВЛЕНИЕ: Добавлена иконка Move в импорты -import { Grid, MousePointer2, Trash2, RotateCcw, X, Plus, Move } from 'lucide-react'; +// Импортируем только то, что реально используем +import { Grid, MousePointer2, Trash2, RotateCcw, X, Plus } from 'lucide-react'; interface Props { config: AppConfig; @@ -49,7 +49,6 @@ export const LayoutStep: React.FC = ({ config, splits, onChange }) => { const drawerD = Math.max(1, config.drawer.depth || 400); const aspectRatio = drawerD / drawerW; - // ViewBox (internal SVG coordinates) const viewBoxW = 1000; const viewBoxH = viewBoxW * aspectRatio; @@ -282,7 +281,7 @@ export const LayoutStep: React.FC = ({ config, splits, onChange }) => {