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 1a7f838 commit 7442984Copy full SHA for 7442984
packages/react-dev-utils/failFast.js
@@ -101,11 +101,13 @@
101
const frames2 = []
102
let pending = frames.length
103
frames.forEach(function(frame, index) {
104
- gps.pinpoint(frame).then(function(nFrame) {
+ // Switched from pinpoint due to erratic bugs
105
+ // follow: https://github.com/stacktracejs/stacktrace-gps/issues/46
106
+ gps.getMappedLocation(frame).then(function(nFrame) {
107
frames2[index] = nFrame
108
if (--pending === 0) resolve(frames2)
109
}).catch(function() {
- // Failed to pinpoint frame ... reuse old frame.
110
+ // Failed to map frame ... reuse old frame.
111
frames2[index] = frame
112
113
})
0 commit comments