Thanks for this. What breakpoints did you use to arrive at this function (Oe). I am using Pause on Uncaught Exceptions and DOM breakpoints (subtree, attribute modified, node removed), however, the debugger doesn't pause at this line of code.
You can find error messages in the console tab. Something like:
ERROR TypeError: Cannot read properties of undefined (reading 'en')
at Oe (main.a2dd1fb8659d8fe3.js:1:178814)
at ed (main.a2dd1fb8659d8fe3.js:1:574884)
at ys (main.a2dd1fb8659d8fe3.js:1:573512)
at dd (main.a2dd1fb8659d8fe3.js:1:573944)
at ys (main.a2dd1fb8659d8fe3.js:1:573969)
at dd (main.a2dd1fb8659d8fe3.js:1:573944)
at ys (main.a2dd1fb8659d8fe3.js:1:573969)
at dd (main.a2dd1fb8659d8fe3.js:1:573944)
at ys (main.a2dd1fb8659d8fe3.js:1:573969)
at hd (main.a2dd1fb8659d8fe3.js:1:580717)
Then you can jump to Oe function by just clicking on the link highlighting the line when the error was thrown. And you can click on the left of that line of code to add a breakpoint.
Please also check the update of my original post for an easier way to get the info.