diff --git a/src/scene/Scene.ts b/src/scene/Scene.ts index c0e0c10b79..9399a15c3d 100644 --- a/src/scene/Scene.ts +++ b/src/scene/Scene.ts @@ -328,9 +328,7 @@ class Scene { if (element.frameId) { this.insertElementAtIndex(element, this.getElementIndex(element.frameId)); } else { - this.replaceAllElements( - normalizeFractionalIndicies([...this.elements, element]), - ); + this.replaceAllElements([...this.elements, element]); } };