Hello,
Consider the code below. If I put this in a loop, we clearly get a memory leak. The JS heap size doesn't go down even after a forced garbage collection. You can also see the dom nodes going up.
The close() method doesn't seem to be releasing memory properly. Is this a known issue ?
app.getObject(containerId, objectId, options).then(model => {
model.close();
});