diff --git a/apps/frontend/src/features/analysis/components/MonthlyVariationTable.tsx b/apps/frontend/src/features/analysis/components/MonthlyVariationTable.tsx index a27b8d5..4c58861 100644 --- a/apps/frontend/src/features/analysis/components/MonthlyVariationTable.tsx +++ b/apps/frontend/src/features/analysis/components/MonthlyVariationTable.tsx @@ -160,7 +160,12 @@ export function MonthlyVariationTable() { ); let inflation: number | null = null; - if (month !== currentMonth && month !== lastCompleteMonth) { + const dayOfMonth = today.getDate(); + const skipLastComplete = dayOfMonth < 14; + if ( + month !== currentMonth && + !(skipLastComplete && month === lastCompleteMonth) + ) { inflation = inflationMap.get(month) ?? null; }