Hi ,
I am trying to plot the cluster based on the zoom levels. But this is done while changing the map extent.
reactiveUtils.when(
() => this.map.mapView.stationary === true,
() => {
if (this.map.mapView.extent) {
this.myfunction();
}
}
);
The event is working on the change extent but on calling my function I am getting a different error.


Uncaught (in promise) l {name: 'AbortError', details: undefined, message: 'Aborted'}
Any idea why this error is appearing?
Thanks
Aditya kumar