Skip to content

Commit

Permalink
fix: fixed time display bug (#5464)
Browse files Browse the repository at this point in the history
Signed-off-by: NaYeong,Kim <nayeongkim@megazone.com>
  • Loading branch information
skdud4659 authored Jan 9, 2025
1 parent 1fbd08b commit d9ae42a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@ const getScheduleInfo = (schedule: ServiceChannelScheduleInfoType): ScheduleInfo
} else if (scheduleDay?.is_scheduled) {
scheduleInfo.days.push(state.dayMapping[day]);
}
scheduleInfo.time = `${startTime} ~ ${endTime}`;
if (scheduleDay?.is_scheduled) {
scheduleInfo.time = `${startTime} ~ ${endTime}`;
}
}
});
Expand Down

0 comments on commit d9ae42a

Please sign in to comment.