Skip to content
Snippets Groups Projects
Commit 7ef5d239 authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Fix linting

parent 18fc37c1
No related branches found
No related tags found
No related merge requests found
import PropTypes from 'prop-types';
import React from 'react';
import keyMirror from 'keymirror';
import {defineMessages, injectIntl, intlShape} from 'react-intl';
import Box from '../box/box.jsx';
import Modal from '../modal/modal.jsx';
......@@ -38,7 +37,6 @@ const ConnectionModalComponent = props => (
);
ConnectionModalComponent.propTypes = {
intl: intlShape,
name: PropTypes.node,
onCancel: PropTypes.func.isRequired,
phase: PropTypes.oneOf(Object.keys(PHASES)).isRequired,
......@@ -46,9 +44,7 @@ ConnectionModalComponent.propTypes = {
title: PropTypes.string.isRequired
};
const IntlModal = injectIntl(ConnectionModalComponent);
export {
IntlModal as default,
ConnectionModalComponent as default,
PHASES
};
......@@ -126,7 +126,7 @@ export default [
/>
),
featured: true,
disabled: true
disabled: true,
launchDeviceConnectionFlow: true,
deviceImage: microbitDeviceImage,
smallDeviceImage: microbitMenuImage
......@@ -157,7 +157,7 @@ export default [
/>
),
featured: true,
disabled: true
disabled: true,
launchDeviceConnectionFlow: true,
deviceImage: ev3DeviceImage,
smallDeviceImage: ev3MenuImage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment