File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -138,17 +138,17 @@ export const ContestCountdown = ({
138138 text = "Starts in " ;
139139 } else if ( schedule . contestStatus === Status . LIVE ) {
140140 if ( schedule . status === AuditStatus . Paused && schedule . resume && + schedule . resume >= Date . now ( ) ) {
141- text = "Next cohort starts in " ;
141+ text = "Next submission phase starts in " ;
142142 start = schedule . resume . toISOString ( ) ;
143143 } else if ( schedule . status === AuditStatus . Paused && schedule . resume && + schedule . resume <= Date . now ( ) ) {
144144 // The resume time has elapsed, give a generic time for now
145145 return (
146146 < div className = "countdown" >
147- { " Next cohort starts soon" }
147+ Next submission phase starts soon
148148 </ div >
149149 ) ;
150150 } else if ( schedule . status === AuditStatus . Active && schedule . pause && + schedule . pause >= Date . now ( ) ) {
151- text = "Current cohort ends in " ;
151+ text = "Current submission phase ends in " ;
152152 end = schedule . pause . toISOString ( ) ;
153153 }
154154 }
You can’t perform that action at this time.
0 commit comments