Remove reference to deleted <Cache> in un-linted file (#28715)
I missed this in #28698 bc the file isn't linted
Joseph Savona committed
Apr 2, 2024 at 08:13 UTC
e3afd026c8d922b008c2759eec48297d518e7634
1 file changed
+9
-11
packages/react-devtools-shell/src/app/ElementTypes/index.js
+9
-11
@@ -60,17 +60,15 @@ export default function ElementTypes(): React.Node {
60
<Context.Consumer>{(value: $FlowFixMe) => null}</Context.Consumer>
61
</Context.Provider>
62
<StrictMode>
63
- <Cache>
64
- <Suspense fallback={<div>Loading...</div>}>
65
- <ClassComponent />
66
- <FunctionComponent />
67
- <MemoFunctionComponent />
68
- <ForwardRefComponent />
69
- <ForwardRefComponentWithAnonymousFunction />
70
- <ForwardRefComponentWithCustomDisplayName />
71
- <LazyComponent />
72
- </Suspense>
73
- </Cache>
63
+ <Suspense fallback={<div>Loading...</div>}>
64
+ <ClassComponent />
65
+ <FunctionComponent />
66
+ <MemoFunctionComponent />
67
+ <ForwardRefComponent />
68
+ <ForwardRefComponentWithAnonymousFunction />
69
+ <ForwardRefComponentWithCustomDisplayName />
70
+ <LazyComponent />
71
+ </Suspense>
72
</StrictMode>
73
</Fragment>
74
</Profiler>