Skip to content

Commit

Permalink
fix: updated event text info
Browse files Browse the repository at this point in the history
  • Loading branch information
freaky4wrld committed Feb 25, 2024
1 parent ccf8f99 commit c7c4b6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/manageProjects/editMeetingTimes.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const EditMeetingTimes = ({
}

updateRecurringEvent(theUpdatedEvent, eventID);
showSnackbar("Event updated!", 'info')
showSnackbar("Recurring event updated", 'info')
setSelectedEvent(null);
}
setFormErrors(errors);
Expand All @@ -118,7 +118,7 @@ const EditMeetingTimes = ({
const handleEventDelete = (eventID) => async () => {
deleteRecurringEvent(eventID);
setSelectedEvent(null);
showSnackbar("Event deleted!", 'warning');
showSnackbar("Recurring event deleted", 'info');
};

return (
Expand Down

0 comments on commit c7c4b6e

Please sign in to comment.