diff --git a/src/element/newElement.ts b/src/element/newElement.ts index 812afb4c..314493f2 100644 --- a/src/element/newElement.ts +++ b/src/element/newElement.ts @@ -63,7 +63,10 @@ export function newTextElement( } export function duplicateElement(element: ReturnType) { - const copy = { ...element }; + const copy = { + ...element, + points: JSON.parse(JSON.stringify(element.points)), + }; delete copy.shape; copy.id = nanoid(); copy.seed = randomSeed();