aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/publishDebugInfo
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2020-02-22 03:24:14 +0100
committerLibravatar Amine Mouafik <amine@mouafik.fr>2020-02-22 03:24:14 +0100
commit5b0af7342a0a04d18abd8d5f885f9cb7941cc471 (patch)
treedfca99d299be2ff552ec13440c71b9a768a6738b /src/features/publishDebugInfo
parentMerge pull request #392 from getferdi/l10n_develop (diff)
downloadferdium-app-5b0af7342a0a04d18abd8d5f885f9cb7941cc471.tar.gz
ferdium-app-5b0af7342a0a04d18abd8d5f885f9cb7941cc471.tar.zst
ferdium-app-5b0af7342a0a04d18abd8d5f885f9cb7941cc471.zip
Fix warning about missing actions in PublishDebugLogModal
Diffstat (limited to 'src/features/publishDebugInfo')
-rw-r--r--src/features/publishDebugInfo/Component.js18
1 files changed, 9 insertions, 9 deletions
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 @@
1import React, { Component } from 'react'; 1import { H1 } from '@meetfranz/ui';
2import { inject, observer } from 'mobx-react';
2import PropTypes from 'prop-types'; 3import PropTypes from 'prop-types';
3import { observer, inject } from 'mobx-react'; 4import React, { Component } from 'react';
4import { defineMessages, intlShape } from 'react-intl'; 5import { defineMessages, intlShape } from 'react-intl';
5import { H1 } from '@meetfranz/ui';
6import injectSheet from 'react-jss'; 6import injectSheet from 'react-jss';
7 7import { state as ModalState } from '.';
8import Input from '../../components/ui/Input'; 8import { sendAuthRequest } from '../../api/utils/auth';
9import Button from '../../components/ui/Button'; 9import Button from '../../components/ui/Button';
10import Input from '../../components/ui/Input';
10import Modal from '../../components/ui/Modal'; 11import Modal from '../../components/ui/Modal';
11import { state as ModalState } from '.';
12import AppStore from '../../stores/AppStore';
13import { DEBUG_API } from '../../config'; 12import { DEBUG_API } from '../../config';
14import { sendAuthRequest } from '../../api/utils/auth'; 13import AppStore from '../../stores/AppStore';
14
15 15
16const messages = defineMessages({ 16const messages = defineMessages({
17 title: { 17 title: {
@@ -79,7 +79,7 @@ const styles = theme => ({
79 }, 79 },
80}); 80});
81 81
82export default @injectSheet(styles) @inject('stores') @observer class PublishDebugLogModal extends Component { 82export default @injectSheet(styles) @inject('stores', 'actions') @observer class PublishDebugLogModal extends Component {
83 static propTypes = { 83 static propTypes = {
84 classes: PropTypes.object.isRequired, 84 classes: PropTypes.object.isRequired,
85 }; 85 };