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 f8ccb99 commit 05a98deCopy full SHA for 05a98de
packages/react-reconciler/src/ReactFiberCommitWork.js
@@ -3756,7 +3756,7 @@ function commitPassiveMountOnFiber(
3756
) {
3757
// Log the reappear in the render phase.
3758
const startTime = ((finishedWork.actualStartTime: any): number);
3759
- if (endTime - startTime > 0.05) {
+ if (startTime >= 0 && endTime - startTime > 0.05) {
3760
logComponentReappeared(finishedWork, startTime, endTime);
3761
}
3762
if (
0 commit comments