diff --git a/frontend/packages/portalbrasil-intranet/src/components/CalendarioEventos/CalendarioEventos.jsx b/frontend/packages/portalbrasil-intranet/src/components/CalendarioEventos/CalendarioEventos.jsx index 4f05019..64d14c0 100644 --- a/frontend/packages/portalbrasil-intranet/src/components/CalendarioEventos/CalendarioEventos.jsx +++ b/frontend/packages/portalbrasil-intranet/src/components/CalendarioEventos/CalendarioEventos.jsx @@ -3,12 +3,14 @@ import { CalendarCell, CalendarGrid, Heading, + I18nProvider, } from 'react-aria-components'; const CalendarioEventos = (props) => { const { items } = props; const hasEvents = Object.keys(items); return ( +
@@ -28,6 +30,7 @@ const CalendarioEventos = (props) => {
+
); };