mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-20 10:42:12 +00:00
hierorder components names fixed
This commit is contained in:
parent
de53cfbfa0
commit
70ede72e06
2 changed files with 10 additions and 2 deletions
|
|
@ -23,4 +23,8 @@ const Modal = ({ modalsContainer, children }) => {
|
|||
);
|
||||
};
|
||||
|
||||
export default withModalsContainer(Modal);
|
||||
const ModalWithModalsContainer = withModalsContainer(Modal);
|
||||
|
||||
ModalWithModalsContainer.displayName = 'ModalWithModalsContainer';
|
||||
|
||||
export default ModalWithModalsContainer;
|
||||
|
|
|
|||
|
|
@ -51,4 +51,8 @@ class RouteFocusableProvider extends Component {
|
|||
}
|
||||
}
|
||||
|
||||
export default withModalsContainer(RouteFocusableProvider);
|
||||
const RouteFocusableProviderWithModalsContainer = withModalsContainer(RouteFocusableProvider);
|
||||
|
||||
RouteFocusableProviderWithModalsContainer.displayName = 'RouteFocusableProviderWithModalsContainer';
|
||||
|
||||
export default RouteFocusableProviderWithModalsContainer;
|
||||
|
|
|
|||
Loading…
Reference in a new issue