Updated modals that use features to be async loaded with WrappedBundle

• Updated:
- modals that use features to be async loaded with WrappedBundle
This commit is contained in:
mgabdev
2020-08-18 11:05:00 -05:00
parent ddca693cfc
commit 1c2cb6a63a
4 changed files with 12 additions and 8 deletions

View File

@@ -3,7 +3,8 @@ import PropTypes from 'prop-types'
import { defineMessages, injectIntl } from 'react-intl'
import ImmutablePureComponent from 'react-immutable-pure-component'
import ImmutablePropTypes from 'react-immutable-proptypes'
import StatusReposts from '../../features/status_reposts'
import { StatusReposts } from '../../features/ui/util/async_components'
import WrappedBundle from '../../features/ui/util/wrapped_bundle'
import ModalLayout from './modal_layout'
const messages = defineMessages({
@@ -38,7 +39,7 @@ class StatusRepostsModal extends ImmutablePureComponent {
onClose={onClose}
noPadding
>
<StatusReposts params={params} />
<WrappedBundle component={StatusReposts} componentParams={params} />
</ModalLayout>
)
}