Skip to content

Commit

Permalink
feat: Added wireless features to Defy (#454)
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Parcet <[email protected]>
  • Loading branch information
AlexDygma authored Jun 27, 2023
1 parent 0eb773c commit 63ea1ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/renderer/modules/Settings/BatterySettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ padding-top: 24px;
}
`;

const BatterySettings = ({ wireless, toggleSavingMode, changeWireless }) => {
function BatterySettings({ wireless, toggleSavingMode, changeWireless }) {
return (
<Styles>
<Card className="overflowFix card-preferences">
Expand Down Expand Up @@ -81,6 +81,6 @@ const BatterySettings = ({ wireless, toggleSavingMode, changeWireless }) => {
</Card>
</Styles>
);
};
}

export default BatterySettings;
4 changes: 2 additions & 2 deletions src/renderer/modules/Settings/RFSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ padding-top: 24px;
}
`;

const RFSettings = ({ sendRePair, wireless, changeWireless }) => {
function RFSettings({ sendRePair, wireless, changeWireless }) {
return (
<Styles>
<Card className="overflowFix card-preferences">
Expand All @@ -59,6 +59,6 @@ const RFSettings = ({ sendRePair, wireless, changeWireless }) => {
</Card>
</Styles>
);
};
}

export default RFSettings;

0 comments on commit 63ea1ba

Please sign in to comment.