remove lasso from hasStrokeColor

This commit is contained in:
dwelle 2025-04-06 23:14:24 +02:00
parent a7668890fb
commit d3277a8ce3

View file

@ -10,10 +10,7 @@ export const hasBackground = (type: ElementOrToolType) =>
type === "freedraw"; type === "freedraw";
export const hasStrokeColor = (type: ElementOrToolType) => export const hasStrokeColor = (type: ElementOrToolType) =>
type !== "image" && type !== "image" && type !== "frame" && type !== "magicframe";
type !== "frame" &&
type !== "magicframe" &&
type !== "lasso";
export const hasStrokeWidth = (type: ElementOrToolType) => export const hasStrokeWidth = (type: ElementOrToolType) =>
type === "rectangle" || type === "rectangle" ||