Noticing an interesting behavior with Microsoft browsers especially when dealing with data returned from our product API. It seems that the array of 52 product objects is being transformed into several arrays, each containing only 10 objects.
Our error tracking system detected this issue around midday on March 6th. No changes have been made to the code prior to the bug surfacing.
Here's how the array looks like when returned from the API:
[
{product object},
{product object},
{product object},
{product object},
{product object},
{product object},
... And so on until product 52
]
This is what the product array variable appears as in the Microsoft Edge console:
[
[
{product object},
{product object},
{product object},
{product object},
{product object},
... And so on until product 9
],
[Array Products 10 - 19],
[Array Products 20 - 29],
[Array Products 30 - 39],
[Array Products 40 - 49],
[Array Products 50 - 52]
]
Any others facing a similar issue with MS browsers recently?
I'm lost after attempting to troubleshoot today. Any suggestions or pointers would be greatly appreciated!