From c93688226f82655093a17d9fe124b5a8dca52c25 Mon Sep 17 00:00:00 2001 From: zsviczian Date: Mon, 1 Dec 2025 11:24:23 +0000 Subject: [PATCH] lint --- packages/excalidraw/actions/actionProperties.tsx | 5 +---- packages/excalidraw/components/icons.tsx | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/packages/excalidraw/actions/actionProperties.tsx b/packages/excalidraw/actions/actionProperties.tsx index 1f889438f8..76caa7e22e 100644 --- a/packages/excalidraw/actions/actionProperties.tsx +++ b/packages/excalidraw/actions/actionProperties.tsx @@ -1597,10 +1597,7 @@ export const actionChangeContainerBehavior = register< label: "labels.container", trackEvent: false, perform: (elements, appState, value, app) => { - invariant( - value, - "actionChangeContainerBehavior: value must be defined", - ); + invariant(value, "actionChangeContainerBehavior: value must be defined"); const elementsMap = app.scene.getNonDeletedElementsMap(); let selected = getSelectedElements(elements, appState, { includeBoundTextElement: true, diff --git a/packages/excalidraw/components/icons.tsx b/packages/excalidraw/components/icons.tsx index 875c64768a..cde6e251ac 100644 --- a/packages/excalidraw/components/icons.tsx +++ b/packages/excalidraw/components/icons.tsx @@ -2470,4 +2470,4 @@ export const growingContainerIcon = createIcon( , tablerIconProps, -); \ No newline at end of file +);