Skip to content

Commit

Permalink
fix: add parentheses removed by formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-Torrent committed Oct 14, 2021
1 parent dcbafd1 commit 2212609
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/item/settings/ItemSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,25 +66,25 @@ const ItemSettings = ({ item }) => {
<FormGroup>
<FormControlLabel
label="Pin Item"
control={
control={(
<Switch
id={SETTINGS_PINNED_TOGGLE}
onChange={handlePinned}
checked={settings.isPinned}
color="primary"
/>
}
)}
/>
<FormControlLabel
label="Show Chatbox"
control={
control={(
<Switch
id={SETTINGS_CHATBOX_TOGGLE}
onChange={handleChatbox}
checked={settings.showChatbox}
color="primary"
/>
}
)}
/>
</FormGroup>
</Container>
Expand Down

0 comments on commit 2212609

Please sign in to comment.