We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4214b8 commit 4979ebbCopy full SHA for 4979ebb
2 files changed
.changeset/blue-pianos-smell.md
@@ -0,0 +1,5 @@
1
+---
2
+"@emotion/core": patch
3
4
+
5
+Fixed label extraction from the stack traces in Chrome in certain scenarios. This has affected only development builds.
packages/core/src/jsx.js
@@ -154,7 +154,7 @@ export const jsx: typeof React.createElement = function(
154
if (error.stack) {
155
// chrome
156
let match = error.stack.match(
157
- /at (?:Object\.|)jsx.*\n\s+at ([A-Z][A-Za-z$]+) /
+ /at (?:Object\.|Module\.|)jsx.*\n\s+at ([A-Z][A-Za-z$]+) /
158
)
159
if (!match) {
160
// safari and firefox
0 commit comments