Fix lint errors

This commit is contained in:
Mark Tolmacs 2024-09-23 20:02:18 +02:00
parent dff60e6f6f
commit c0915c6b98
No known key found for this signature in database
2 changed files with 1 additions and 5 deletions

View file

@ -553,10 +553,7 @@ export const convertToExcalidrawElements = (
type: "arrow", type: "arrow",
}); });
Object.assign( Object.assign(excalidrawElement, pointExtent(excalidrawElement.points));
excalidrawElement,
pointExtent(excalidrawElement.points),
);
break; break;
} }
case "text": { case "text": {

View file

@ -6,7 +6,6 @@ import {
pointOnLineSegment, pointOnLineSegment,
pointOnPolygon, pointOnPolygon,
polygonIncludesPoint, polygonIncludesPoint,
segmentsIntersectAt,
} from "../../math"; } from "../../math";
import { pointInEllipse, pointOnEllipse, type Ellipse } from "./shape"; import { pointInEllipse, pointOnEllipse, type Ellipse } from "./shape";