aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/publishDebugInfo/Component.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/publishDebugInfo/Component.js')
-rw-r--r--src/features/publishDebugInfo/Component.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/features/publishDebugInfo/Component.js b/src/features/publishDebugInfo/Component.js
index 63f15fe7b..4308b8f09 100644
--- a/src/features/publishDebugInfo/Component.js
+++ b/src/features/publishDebugInfo/Component.js
@@ -11,6 +11,7 @@ import Input from '../../components/ui/Input';
11import Modal from '../../components/ui/Modal'; 11import Modal from '../../components/ui/Modal';
12import { DEBUG_API } from '../../config'; 12import { DEBUG_API } from '../../config';
13import AppStore from '../../stores/AppStore'; 13import AppStore from '../../stores/AppStore';
14import ServicesStore from '../../stores/ServicesStore';
14 15
15 16
16const messages = defineMessages({ 17const messages = defineMessages({
@@ -201,8 +202,6 @@ PublishDebugLogModal.wrappedComponent.propTypes = {
201 app: PropTypes.instanceOf(AppStore).isRequired, 202 app: PropTypes.instanceOf(AppStore).isRequired,
202 }).isRequired, 203 }).isRequired,
203 actions: PropTypes.shape({ 204 actions: PropTypes.shape({
204 service: PropTypes.shape({ 205 service: PropTypes.instanceOf(ServicesStore).isRequired,
205 setActive: PropTypes.func.isRequired,
206 }).isRequired,
207 }).isRequired, 206 }).isRequired,
208}; 207};