From cf9c795e81585dd2a2b375885896c6f966850e87 Mon Sep 17 00:00:00 2001 From: hamid zarghami Date: Thu, 8 Jan 2026 09:33:25 +0330 Subject: [PATCH] Fix build --- src/pages/editor/components/tools/LineShape.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/editor/components/tools/LineShape.tsx b/src/pages/editor/components/tools/LineShape.tsx index bdbbb1e..f6c4c91 100644 --- a/src/pages/editor/components/tools/LineShape.tsx +++ b/src/pages/editor/components/tools/LineShape.tsx @@ -3,7 +3,7 @@ import { Line } from "react-konva"; import Konva from "konva"; import type { ShapeProps } from "./types"; -const LineShape = ({ obj, isSelected, onSelect, onUpdate, draggable }: ShapeProps) => { +const LineShape = ({ obj, onSelect, onUpdate, draggable }: ShapeProps) => { const shapeRef = useRef(null); // Transformer is managed in EditorCanvas for multi-select support