We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a34b7c commit 8db5e33Copy full SHA for 8db5e33
packages/react-error-overlay/src/effects/proxyConsole.js
@@ -28,7 +28,7 @@ const registerReactStack = () => {
28
// $FlowFixMe
29
console.reactStack = frames => reactFrameStack.push(frames);
30
31
- console.reactStackEnd = () => reactFrameStack.pop();
+ console.reactStackEnd = frames => reactFrameStack.pop();
32
}
33
};
34
packages/react-error-overlay/src/utils/getStackFrames.js
@@ -13,7 +13,7 @@ import { unmap } from './unmapper';
13
14
function getStackFrames(
15
error: Error,
16
- unhandledRejection: boolean = false, // eslint-disable-line
+ unhandledRejection: boolean = false,
17
contextSize: number = 3
18
): Promise<StackFrame[] | null> {
19
const parsedFrames = parse(error);
0 commit comments