diff --git a/frontend/src/component/feature/FeatureView/FeatureOverview/ReleasePlan/ReleasePlanMilestone/MilestoneNextStartTime.tsx b/frontend/src/component/feature/FeatureView/FeatureOverview/ReleasePlan/ReleasePlanMilestone/MilestoneNextStartTime.tsx index 5eb883ecf1..9beaf268fd 100644 --- a/frontend/src/component/feature/FeatureView/FeatureOverview/ReleasePlan/ReleasePlanMilestone/MilestoneNextStartTime.tsx +++ b/frontend/src/component/feature/FeatureView/FeatureOverview/ReleasePlan/ReleasePlanMilestone/MilestoneNextStartTime.tsx @@ -10,10 +10,10 @@ const formatSmartDate = (date: Date): string => { const timeString = format(date, 'HH:mm'); if (isToday(date)) { - return `today at ${timeString}`; + return `today after ${timeString}`; } if (isTomorrow(date)) { - return `tomorrow at ${timeString}`; + return `tomorrow after ${timeString}`; } // For other dates, show full date with time