Closed
Description
Suspense/fallback wraps the components with display:none !important
initially and somehow this style doesn't get removed automatically even after the components loads into the DOM on IE 11. Works fine on chrome through. If I manually remove this from the dev tool, you can see it shows up.
Seems like this is re-introduced:
#14114
React version: 16.12.0
<Suspense fallback={<CircularProgress />}> <Provider store={store}> <PersistGate loading={<div>Loading...</div>} persistor={persistor}> <Main /> </PersistGate> </Provider> </Suspense>