Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
KarimP committed Sep 25, 2023
1 parent 8476ffa commit 38abf48
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/shared/ReactComponentStackFrame.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,16 @@ export function describeNativeComponentFrame(
const controlLines = controlStack.split('\n');
let s = 0;
let c = 0;
while (s < sampleLines.length && !sampleLines[s].includes('DetermineComponentFrameRoot')) {
while (
s < sampleLines.length &&
!sampleLines[s].includes('DetermineComponentFrameRoot')
) {
s++;
}
while (c < controlLines.length && !controlLines[c].includes('DetermineComponentFrameRoot')) {
while (
c < controlLines.length &&
!controlLines[c].includes('DetermineComponentFrameRoot')
) {
c++;
}
// We couldn't find our intentionally injected common root frame, attempt
Expand Down

0 comments on commit 38abf48

Please sign in to comment.