diff --git a/components/widgets/fires/fires-alerts/selectors.js b/components/widgets/fires/fires-alerts/selectors.js index d9c7427ce3..0f6387ce76 100644 --- a/components/widgets/fires/fires-alerts/selectors.js +++ b/components/widgets/fires/fires-alerts/selectors.js @@ -175,7 +175,7 @@ export const parseData = createSelector( ); const findWeek = weekFound ? startWeek : 1; - const findYear = compareStartYear + 1; + const findYear = weekFound ? compareStartYear : compareStartYear + 1; const compareStartIndex = data.findIndex( (el) => el.year === findYear && el.week === findWeek );