Skip to content

Commit

Permalink
Don't export the moving target
Browse files Browse the repository at this point in the history
It's not useful for comparison purposes anyway.
  • Loading branch information
sebmarkbage committed Oct 2, 2019
1 parent e2237bf commit cc67c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-reconciler/src/ReactFiberExpirationTime.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const Idle = 2;
// Continuous Hydration is a moving priority. It is slightly higher than Idle
// and is used to increase priority of hover targets. It is increasing with
// each usage so that last always wins.
export let ContinuousHydration = 3;
let ContinuousHydration = 3;
export const Sync = MAX_SIGNED_31_BIT_INT;
export const Batched = Sync - 1;

Expand Down

0 comments on commit cc67c72

Please sign in to comment.