kritzel-stencil 0.0.109 → 0.0.110

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1602,7 +1602,7 @@ class RemoveSelectionGroupCommand extends KritzelBaseCommand {
1602
1602
  this.previousSelectionGroup = this._store.state.selectionGroup;
1603
1603
  }
1604
1604
  execute() {
1605
- this._store.state.objectsOctree.remove(object => object.id === this.previousSelectionGroup.id);
1605
+ this._store.state.objectsOctree.remove(object => { var _a; return object.id === ((_a = this.previousSelectionGroup) === null || _a === void 0 ? void 0 : _a.id); });
1606
1606
  this._store.state.selectionGroup = null;
1607
1607
  }
1608
1608
  undo() {