diff --git a/webapp/channels/src/components/custom_status/custom_status_modal.tsx b/webapp/channels/src/components/custom_status/custom_status_modal.tsx index 8852a20c96..1ada59a410 100644 --- a/webapp/channels/src/components/custom_status/custom_status_modal.tsx +++ b/webapp/channels/src/components/custom_status/custom_status_modal.tsx @@ -217,7 +217,7 @@ const CustomStatusModal: React.FC = (props: Props) => { case FOUR_HOURS: return moment().add(4, 'hours').seconds(0).milliseconds(0).toISOString(); case TODAY: - return moment().add(1, 'day').set({hour: 8, minute: 0}).toISOString(); + return moment().endOf('day').add(1, 'minute').seconds(0).milliseconds(0).toISOString(); case THIS_WEEK: return moment().endOf('week').toISOString(); case DATE_AND_TIME: