Skip to content

Commit

Permalink
retrive
Browse files Browse the repository at this point in the history
  • Loading branch information
gurramkarthiknetha committed Dec 15, 2024
1 parent 96e1169 commit c2a44f3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/EventCalendar/EventCalendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,6 @@ 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 @@ -322,7 +321,7 @@ const Calendar: React.FC<InterfaceCalendarProps> = ({
)
) : (
<p className={styles.no_events_message}>
{NO_EVENTS_MESSAGE}
No events available
</p>
)}
</div>
Expand Down

0 comments on commit c2a44f3

Please sign in to comment.