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 7388c26 commit 719ec6bCopy full SHA for 719ec6b
packages/react-devtools-shared/src/backend/renderer.js
@@ -7,7 +7,7 @@
7
* @flow
8
*/
9
10
-import {gt, gte} from 'semver';
+import {gte} from 'semver';
11
import {
12
ComponentFilterDisplayName,
13
ComponentFilterElementType,
@@ -153,7 +153,7 @@ export function getInternalReactConstants(
153
// **********************************************************
154
// The section below is copied from files in React repo.
155
// Keep it in sync, and add version guards if it changes.
156
- if (gt(version, '16.13.1')) {
+ if (gte(version, '17.0.0-alpha')) {
157
// TODO (Offscreen) Update the version number above to reflect the first Offscreen alpha/beta release.
158
ReactTypeOfWork = {
159
Block: 22,
0 commit comments