Skip to content

Commit e3afd02

Browse files
authored
Remove reference to deleted <Cache> in un-linted file (#28715)
I missed this in #28698 bc the file isn't linted
1 parent 28fc980 commit e3afd02

File tree

1 file changed

+9
-11
lines changed
  • packages/react-devtools-shell/src/app/ElementTypes

1 file changed

+9
-11
lines changed

packages/react-devtools-shell/src/app/ElementTypes/index.js

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,15 @@ export default function ElementTypes(): React.Node {
6060
<Context.Consumer>{(value: $FlowFixMe) => null}</Context.Consumer>
6161
</Context.Provider>
6262
<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>
7472
</StrictMode>
7573
</Fragment>
7674
</Profiler>

0 commit comments

Comments
 (0)