Skip to content

Commit fe4ffb3

Browse files
committed
linting
1 parent bfc5f6d commit fe4ffb3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/containers/Server/PairingCodeDialog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const PairingCodeDialog = (props) => {
8686
.then((pairingInfo) => {
8787
const { device } = pairingInfo;
8888
const pairedServer = addSecureApiUrlToServer({
89-
...props.server,
89+
...server,
9090
securePort: pairingInfo.securePort,
9191
sslCertificate: pairingInfo.sslCertificate,
9292
});

src/containers/StartScreen/ManageProtocolsOverlay.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ const ManageProtocolsOverlay = ({
7979
]);
8080
};
8181

82-
const SelectableProtocolCard = (props) => (
82+
const SelectableProtocolCard = ({ uid, ...props }) => (
8383
<ProtocolCard
8484
{...props}
85-
onClickHandler={() => handleProtocolCardClick(props.uid)}
85+
onClickHandler={() => handleProtocolCardClick(uid)}
8686
/>
8787
);
8888

0 commit comments

Comments
 (0)