File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -138,17 +138,17 @@ export const ContestCountdown = ({
138
138
text = "Starts in " ;
139
139
} else if ( schedule . contestStatus === Status . LIVE ) {
140
140
if ( schedule . status === AuditStatus . Paused && schedule . resume && + schedule . resume >= Date . now ( ) ) {
141
- text = "Next cohort starts in " ;
141
+ text = "Next submission phase starts in " ;
142
142
start = schedule . resume . toISOString ( ) ;
143
143
} else if ( schedule . status === AuditStatus . Paused && schedule . resume && + schedule . resume <= Date . now ( ) ) {
144
144
// The resume time has elapsed, give a generic time for now
145
145
return (
146
146
< div className = "countdown" >
147
- { " Next cohort starts soon" }
147
+ Next submission phase starts soon
148
148
</ div >
149
149
) ;
150
150
} 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 " ;
152
152
end = schedule . pause . toISOString ( ) ;
153
153
}
154
154
}
You can’t perform that action at this time.
0 commit comments