From af78a7dad3eeff61617919023afda66fa4a318f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?La=C3=ADs=20Fray=20Ribeiro?= Date: Wed, 6 Nov 2024 12:23:03 -0300 Subject: [PATCH] fix(calendar-grid): change key used in week days mapping change the key used to be the week day character plus the index to avoid warnings when diferents days have the semana character for identification fix #2041 --- packages/shoreline/src/components/calendar/calendar-grid.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/shoreline/src/components/calendar/calendar-grid.tsx b/packages/shoreline/src/components/calendar/calendar-grid.tsx index 7bbeb49373..ec05d39633 100644 --- a/packages/shoreline/src/components/calendar/calendar-grid.tsx +++ b/packages/shoreline/src/components/calendar/calendar-grid.tsx @@ -24,8 +24,8 @@ export function CalendarGrid(props: CalendarGridProps) { - {weekDays.map((day) => ( - + {weekDays.map((day, index) => ( + ))}
{day}{day}