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 +);