Skip to content

Commit

Permalink
Auto-format code
Browse files Browse the repository at this point in the history
  • Loading branch information
jsh9 committed Nov 27, 2023
1 parent 7e8fc8b commit e1a0187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ function determineNewZoomLevel(
zoomLevel2,
zoomLevel3,
) {
let numbers = [zoomLevel1, zoomLevel2, zoomLevel3].filter(num => num > 0);
let numbers = [zoomLevel1, zoomLevel2, zoomLevel3].filter((num) => num > 0);

if (numbers.length <= 1) {
// there's no need to toggle
Expand Down

0 comments on commit e1a0187

Please sign in to comment.