Remove unused field _debugIsCurrentlyTiming (#31753)
This field is unused. It's not there at runtime. It's just legacy from the type.
Sebastian Markbåge committed
Dec 12, 2024 at 23:53 UTC
56ae4b8d22f773c961c6f57946e648de0879c7f1
1 file changed
-1
packages/react-reconciler/src/ReactInternalTypes.js
-1
@@ -210,7 +210,6 @@ export type Fiber = {
210
_debugOwner?: ReactComponentInfo | Fiber | null,
211
_debugStack?: string | Error | null,
212
_debugTask?: ConsoleTask | null,
213
- _debugIsCurrentlyTiming?: boolean,
213
_debugNeedsRemount?: boolean,
214
215
// Used to verify that the order of hooks does not change between renders.