From d764823f6785e6a2b39c441a404a3048cbd8fe4e Mon Sep 17 00:00:00 2001 From: Gurram Karthik Date: Mon, 16 Dec 2024 00:45:04 +0530 Subject: [PATCH] changed acc to bot --- src/components/EventCalendar/EventCalendar.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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}

)}