Skip to content

Commit

Permalink
fix(viirs): remove default value from confidenceToggle
Browse files Browse the repository at this point in the history
  • Loading branch information
willian-viana committed Nov 8, 2023
1 parent 47968e0 commit 600739b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ export const parseSentence = createSelector(
highConfidenceWithInd,
allAlertsWithInd,
} = sentences;
const { confidenceToggle = true } = settings;
const { confidenceToggle } = settings;
let { confidence } = options;

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export const parseSentence = createSelector(
) => {
if (!data) return null;
const { initial, withInd, highConfidence } = sentences;
const { confidenceToggle = true } = settings;
const { confidenceToggle } = settings;
const { dataset } = options;

let { confidence } = options;
Expand Down

0 comments on commit 600739b

Please sign in to comment.