Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Florin Mihalache committed Jan 12, 2021
1 parent 3341f2d commit c356cb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/models/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ export class State {
if (currentValue >= step) {
State.set(counter, currentValue - step)
return currentValue - step
} else {
State.set(counter, 0)
return 0
}
State.set(counter, 0)
return 0

}
}

0 comments on commit c356cb7

Please sign in to comment.