@crystaldesign/real-time-viewer 25.15.0-beta.3 → 25.15.0-beta.4

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.
@@ -3293,8 +3293,8 @@ function _findAssets() {
3293
3293
  nextToDelete = unusedGeos.reduce(function (oIdx, cur, curIdx, ar) {
3294
3294
  return cur.metadata.lastUsed < ar[oIdx].metadata.lastUsed ? curIdx : oIdx;
3295
3295
  }, 0);
3296
- unusedGeos.slice(nextToDelete);
3297
3296
  unusedGeos[nextToDelete].dispose();
3297
+ unusedGeos.splice(nextToDelete, 1);
3298
3298
  geoCountToDelete--;
3299
3299
  }
3300
3300
  }