Skip to content
Snippets Groups Projects
Commit 2897553e authored by Evelyn Eastmond's avatar Evelyn Eastmond
Browse files

Fixing linting.

parent f1ebb731
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ class PeripheralTile extends React.Component { ...@@ -23,7 +23,7 @@ class PeripheralTile extends React.Component {
<Box className={styles.peripheralTileName}> <Box className={styles.peripheralTileName}>
<img <img
className={styles.peripheralTileImage} className={styles.peripheralTileImage}
src={this.props.smallperipheralImage} src={this.props.smallPeripheralImage}
/> />
<Box className={styles.peripheralTileNameWrapper}> <Box className={styles.peripheralTileNameWrapper}>
<Box className={styles.peripheralTileNameLabel}> <Box className={styles.peripheralTileNameLabel}>
......
...@@ -85,13 +85,13 @@ const ScanningStep = props => ( ...@@ -85,13 +85,13 @@ const ScanningStep = props => (
); );
ScanningStep.propTypes = { ScanningStep.propTypes = {
onConnecting: PropTypes.func,
onRefresh: PropTypes.func,
peripheralList: PropTypes.arrayOf(PropTypes.shape({ peripheralList: PropTypes.arrayOf(PropTypes.shape({
name: PropTypes.string, name: PropTypes.string,
rssi: PropTypes.number, rssi: PropTypes.number,
peripheralId: PropTypes.string peripheralId: PropTypes.string
})), })),
onConnecting: PropTypes.func,
onRefresh: PropTypes.func,
scanning: PropTypes.bool.isRequired, scanning: PropTypes.bool.isRequired,
smallPeripheralImage: PropTypes.string smallPeripheralImage: PropTypes.string
}; };
......
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