Error: Maximum call stack size exceeded

I’ve been getting this randomly from the same API method. The code that throws the error is consistent, but why it is being thrown feels random.

What does this error imply? Is this a server-side error, or is something potentially wrong in my code?

Thanks,
TIm

Hi @Tim_Jones

it looks like the error comes from the JS code, make sure there is no infinitive loop like

function foo(){
....

foo()
}

Thanks for jumping in @vladimir-upirov

I don’t have any recursion, but I see that is the most common source of this error.

I’m confused, but this is a direction to investigate. Thanks!

Tim