Skip to content

Commit

Permalink
changed acc to bot
Browse files Browse the repository at this point in the history
  • Loading branch information
gurramkarthiknetha committed Dec 15, 2024
1 parent c2a44f3 commit d764823
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/EventCalendar/EventCalendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ const Calendar: React.FC<InterfaceCalendarProps> = ({
(windowWidth <= 700 && allDayEventsList.length > 0)
);
}, [allDayEventsList.length, windowWidth]);
const NO_EVENTS_MESSAGE = 'No events available';
return (
<>
<div className={styles.calendar_hour_block}>
Expand Down Expand Up @@ -321,7 +322,7 @@ const Calendar: React.FC<InterfaceCalendarProps> = ({
)
) : (
<p className={styles.no_events_message}>
No events available
{NO_EVENTS_MESSAGE}
</p>
)}
</div>
Expand Down

0 comments on commit d764823

Please sign in to comment.