Skip to content

Commit

Permalink
(fix): lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ilan-gold committed Nov 20, 2024
1 parent bb1912f commit cbf1b71
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"javascript": {
"formatter": {
"trailingComma": "none",
"trailingCommas": "none",
"arrowParentheses": "asNeeded",
"quoteStyle": "single"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ function LensSelect() {
native
value={lensSelection}
onChange={e =>
useImageSettingsStore.setState({ lensSelection: Number.parseInt(e.target.value) })
useImageSettingsStore.setState({
lensSelection: Number.parseInt(e.target.value)
})
}
>
{currChannelIndices.map((channelIndex, relativeIndex) => (
Expand Down

0 comments on commit cbf1b71

Please sign in to comment.