diff --git a/packages/common/src/utils.ts b/packages/common/src/utils.ts index 1054960650..f3c2d47334 100644 --- a/packages/common/src/utils.ts +++ b/packages/common/src/utils.ts @@ -567,7 +567,7 @@ export const isTransparent = (color: string) => { }; export const isBindingFallthroughEnabled = (el: ExcalidrawBindableElement) => - el.fillStyle !== "solid" || isTransparent(el.backgroundColor); + isTransparent(el.backgroundColor); export type ResolvablePromise = Promise & { resolve: [T] extends [undefined]