From 52ed678a73e5c20e5e71af6e95aef210e732c3b6 Mon Sep 17 00:00:00 2001 From: Steve Ruiz Date: Thu, 1 Jul 2021 15:05:54 +0100 Subject: [PATCH] Update shape.tsx --- components/canvas/shape.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/canvas/shape.tsx b/components/canvas/shape.tsx index fc3f2f0f2..ced961d16 100644 --- a/components/canvas/shape.tsx +++ b/components/canvas/shape.tsx @@ -8,11 +8,10 @@ import useShapeEvents from 'hooks/useShapeEvents' import vec from 'utils/vec' import { getShapeStyle } from 'state/shape-styles' import useShapeDef from 'hooks/useShape' -import { BooleanArraySupportOption } from 'prettier' interface ShapeProps { id: string - isSelecting: BooleanArraySupportOption + isSelecting: boolean } function Shape({ id, isSelecting }: ShapeProps): JSX.Element {