diff --git a/src/components/EventCalendar/EventCalendar.tsx b/src/components/EventCalendar/EventCalendar.tsx index a087b3f999..be9808fd2e 100644 --- a/src/components/EventCalendar/EventCalendar.tsx +++ b/src/components/EventCalendar/EventCalendar.tsx @@ -284,6 +284,7 @@ const Calendar: React.FC = ({ (windowWidth <= 700 && allDayEventsList.length > 0) ); }, [allDayEventsList.length, windowWidth]); + const NO_EVENTS_MESSAGE = 'No events available'; return ( <>
@@ -321,7 +322,7 @@ const Calendar: React.FC = ({ ) ) : (

- No events available + {NO_EVENTS_MESSAGE}

)}