From 8cfb1f166ed10d2f8800d4b6689c52e4bb38db14 Mon Sep 17 00:00:00 2001 From: Andras Viczian Date: Wed, 12 Mar 2025 16:01:54 +0100 Subject: [PATCH] eslint fixes --- packages/excalidraw/actions/actionCanvas.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/excalidraw/actions/actionCanvas.tsx b/packages/excalidraw/actions/actionCanvas.tsx index ce1a414fd..7bd80ded3 100644 --- a/packages/excalidraw/actions/actionCanvas.tsx +++ b/packages/excalidraw/actions/actionCanvas.tsx @@ -40,13 +40,13 @@ import { centerScrollOn } from "../scene/scroll"; import { getStateForZoom } from "../scene/zoom"; import { CaptureUpdateAction } from "../store"; import { getShortcutKey, updateActiveTool } from "../utils"; +import { isLinearElement } from "../element/typeChecks"; import { register } from "./register"; import type { SceneBounds } from "../element/bounds"; import type { ExcalidrawElement } from "../element/types"; import type { AppState, Offsets } from "../types"; -import { isLinearElement } from "../element/typeChecks"; export const actionChangeViewBackgroundColor = register({ name: "changeViewBackgroundColor",