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
Any chance we can update Line 183 to include a null check for frame (i.e.if (!frame || !frame.fileName) {)? I haven't been able to track down the why of these errors, except that this error only happens after loading an external, third party JavaScript library.
The parameters being passed into const frame = ErrorStackParser.parse(stackInfo)[stackIndex]; which are causing the error are:
This might be helpful: grepping the repo's node_modules for stacktrace source points to styletron-react exclusively. That repo uses that error in two places:
Any chance we can update Line 183 to include a null check for
frame
(i.e.if (!frame || !frame.fileName) {
)? I haven't been able to track down thewhy
of these errors, except that this error only happens after loading an external, third party JavaScript library.The parameters being passed into
const frame = ErrorStackParser.parse(stackInfo)[stackIndex];
which are causing the error are:Screenshot
The text was updated successfully, but these errors were encountered: