File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed
Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ function FiberRootNode(
7272 this . suspendedLanes = NoLanes ;
7373 this . pingedLanes = NoLanes ;
7474 this . expiredLanes = NoLanes ;
75- this . mutableReadLanes = NoLanes ;
7675 this . finishedLanes = NoLanes ;
7776 this . errorRecoveryDisabledLanes = NoLanes ;
7877
Original file line number Diff line number Diff line change @@ -247,7 +247,6 @@ type BaseFiberRootProperties = {
247247 suspendedLanes : Lanes ,
248248 pingedLanes : Lanes ,
249249 expiredLanes : Lanes ,
250- mutableReadLanes : Lanes ,
251250 errorRecoveryDisabledLanes : Lanes ,
252251
253252 finishedLanes : Lanes ,
Original file line number Diff line number Diff line change 1- export default '18.3.0-PLACEHOLDER' ;
1+ /**
2+ * Copyright (c) Meta Platforms, Inc. and affiliates.
3+ *
4+ * This source code is licensed under the MIT license found in the
5+ * LICENSE file in the root directory of this source tree.
6+ */
7+
8+ // TODO: this is special because it gets imported during build.
9+ //
10+ // TODO: 18.0.0 has not been released to NPM;
11+ // It exists as a placeholder so that DevTools can support work tag changes between releases.
12+ // When we next publish a release, update the matching TODO in backend/renderer.js
13+ // TODO: This module is used both by the release scripts and to expose a version
14+ // at runtime. We should instead inject the version number as part of the build
15+ // process, and use the ReactVersions.js module as the single source of truth.
16+ export default '18.2.0' ;
You can’t perform that action at this time.
0 commit comments