You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While using https://github.com/googlemaps/js-markerclusterer we run into an issue with the call stack being exceeded since it's comparing 2 lists of google's custom HTML elements (<gmp-advanced-marker />). It most likely a cyclic issue that is happening. However, we managed to fix it by adding the below (as a quick patch before release):
if(ainstanceofNode)returna.isEqualNode(b);
The text was updated successfully, but these errors were encountered:
While using https://github.com/googlemaps/js-markerclusterer we run into an issue with the call stack being exceeded since it's comparing 2 lists of google's custom HTML elements (
<gmp-advanced-marker />
). It most likely a cyclic issue that is happening. However, we managed to fix it by adding the below (as a quick patch before release):The text was updated successfully, but these errors were encountered: