Skip to content

Commit 483358c

Browse files
authored
Omit TransitionHydrationLane from TransitionLanes (#20802)
Follow up to #20793 I don't this makes any observable difference, but this is how it was before so might as well be consistent just in case.
1 parent 78ec97d commit 483358c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/react-reconciler/src/ReactFiberLane.new.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ const InputContinuousLane: Lanes = /* */ 0b0000000000000000000
9393
export const DefaultHydrationLane: Lane = /* */ 0b0000000000000000000000001000000;
9494
export const DefaultLane: Lanes = /* */ 0b0000000000000000000000010000000;
9595

96-
const TransitionLanes: Lanes = /* */ 0b0000000011111111111111100000000;
9796
const TransitionHydrationLane: Lane = /* */ 0b0000000000000000000000100000000;
97+
const TransitionLanes: Lanes = /* */ 0b0000000011111111111111000000000;
9898
const TransitionLane1: Lane = /* */ 0b0000000000000000000001000000000;
9999
const TransitionLane2: Lane = /* */ 0b0000000000000000000010000000000;
100100
const TransitionLane3: Lane = /* */ 0b0000000000000000000100000000000;

packages/react-reconciler/src/ReactFiberLane.old.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ const InputContinuousLane: Lanes = /* */ 0b0000000000000000000
9393
export const DefaultHydrationLane: Lane = /* */ 0b0000000000000000000000001000000;
9494
export const DefaultLane: Lanes = /* */ 0b0000000000000000000000010000000;
9595

96-
const TransitionLanes: Lanes = /* */ 0b0000000011111111111111100000000;
9796
const TransitionHydrationLane: Lane = /* */ 0b0000000000000000000000100000000;
97+
const TransitionLanes: Lanes = /* */ 0b0000000011111111111111000000000;
9898
const TransitionLane1: Lane = /* */ 0b0000000000000000000001000000000;
9999
const TransitionLane2: Lane = /* */ 0b0000000000000000000010000000000;
100100
const TransitionLane3: Lane = /* */ 0b0000000000000000000100000000000;

0 commit comments

Comments
 (0)