From 873fd63ea484d198ef5000b8cb2ee14604238671 Mon Sep 17 00:00:00 2001 From: Jose Selesan Date: Thu, 27 Aug 2026 11:16:39 -0300 Subject: [PATCH] style(analysis): use full month names in variation table --- .../components/MonthlyVariationTable.tsx | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/apps/frontend/src/features/analysis/components/MonthlyVariationTable.tsx b/apps/frontend/src/features/analysis/components/MonthlyVariationTable.tsx index b1d7463..0971c5e 100644 --- a/apps/frontend/src/features/analysis/components/MonthlyVariationTable.tsx +++ b/apps/frontend/src/features/analysis/components/MonthlyVariationTable.tsx @@ -20,18 +20,18 @@ type MonthRow = { }; const MONTH_NAMES = [ - "Ene", - "Feb", - "Mar", - "Abr", - "May", - "Jun", - "Jul", - "Ago", - "Sep", - "Oct", - "Nov", - "Dic", + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre", ]; function formatMonth(monthKey: string): string {