Skip to content

Commit

Permalink
Fix Lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
JaapvanEkris authored Dec 16, 2024
1 parent 5cc69bf commit f7fe338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/engine/utils/StreamFilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function createStreamFilter (maxLength, defaultValue) {
let cleanDatapoint = defaultValue

function push (dataPoint) {
if (datapoint !== undefined && !isNaN(datapoint)) {
if (dataPoint !== undefined && !isNaN(dataPoint)) {
lastRawDatapoint = dataPoint
dataPoints.push(dataPoint)
cleanDatapoint = dataPoints.median()
Expand Down

0 comments on commit f7fe338

Please sign in to comment.