From 2897553e6163247835c35a81a93659241e09391c Mon Sep 17 00:00:00 2001
From: Evelyn Eastmond <evhan55@gmail.com>
Date: Wed, 5 Sep 2018 14:58:33 -0400
Subject: [PATCH] Fixing linting.

---
 src/components/connection-modal/peripheral-tile.jsx | 2 +-
 src/components/connection-modal/scanning-step.jsx   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/components/connection-modal/peripheral-tile.jsx b/src/components/connection-modal/peripheral-tile.jsx
index cb32eaf79..6b7e0388d 100644
--- a/src/components/connection-modal/peripheral-tile.jsx
+++ b/src/components/connection-modal/peripheral-tile.jsx
@@ -23,7 +23,7 @@ class PeripheralTile extends React.Component {
                 <Box className={styles.peripheralTileName}>
                     <img
                         className={styles.peripheralTileImage}
-                        src={this.props.smallperipheralImage}
+                        src={this.props.smallPeripheralImage}
                     />
                     <Box className={styles.peripheralTileNameWrapper}>
                         <Box className={styles.peripheralTileNameLabel}>
diff --git a/src/components/connection-modal/scanning-step.jsx b/src/components/connection-modal/scanning-step.jsx
index 9ab10ae49..bb6276ac0 100644
--- a/src/components/connection-modal/scanning-step.jsx
+++ b/src/components/connection-modal/scanning-step.jsx
@@ -85,13 +85,13 @@ const ScanningStep = props => (
 );
 
 ScanningStep.propTypes = {
+    onConnecting: PropTypes.func,
+    onRefresh: PropTypes.func,
     peripheralList: PropTypes.arrayOf(PropTypes.shape({
         name: PropTypes.string,
         rssi: PropTypes.number,
         peripheralId: PropTypes.string
     })),
-    onConnecting: PropTypes.func,
-    onRefresh: PropTypes.func,
     scanning: PropTypes.bool.isRequired,
     smallPeripheralImage: PropTypes.string
 };
-- 
GitLab