From 5b0af7342a0a04d18abd8d5f885f9cb7941cc471 Mon Sep 17 00:00:00 2001 From: Amine Mouafik Date: Sat, 22 Feb 2020 03:24:14 +0100 Subject: Fix warning about missing actions in PublishDebugLogModal --- src/features/publishDebugInfo/Component.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/features/publishDebugInfo') diff --git a/src/features/publishDebugInfo/Component.js b/src/features/publishDebugInfo/Component.js index be90a1f99..1f1b0ed45 100644 --- a/src/features/publishDebugInfo/Component.js +++ b/src/features/publishDebugInfo/Component.js @@ -1,17 +1,17 @@ -import React, { Component } from 'react'; +import { H1 } from '@meetfranz/ui'; +import { inject, observer } from 'mobx-react'; import PropTypes from 'prop-types'; -import { observer, inject } from 'mobx-react'; +import React, { Component } from 'react'; import { defineMessages, intlShape } from 'react-intl'; -import { H1 } from '@meetfranz/ui'; import injectSheet from 'react-jss'; - -import Input from '../../components/ui/Input'; +import { state as ModalState } from '.'; +import { sendAuthRequest } from '../../api/utils/auth'; import Button from '../../components/ui/Button'; +import Input from '../../components/ui/Input'; import Modal from '../../components/ui/Modal'; -import { state as ModalState } from '.'; -import AppStore from '../../stores/AppStore'; import { DEBUG_API } from '../../config'; -import { sendAuthRequest } from '../../api/utils/auth'; +import AppStore from '../../stores/AppStore'; + const messages = defineMessages({ title: { @@ -79,7 +79,7 @@ const styles = theme => ({ }, }); -export default @injectSheet(styles) @inject('stores') @observer class PublishDebugLogModal extends Component { +export default @injectSheet(styles) @inject('stores', 'actions') @observer class PublishDebugLogModal extends Component { static propTypes = { classes: PropTypes.object.isRequired, }; -- cgit v1.2.3-54-g00ecf