File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,16 +16,17 @@ function isVotingOpen(): boolean {
1616 if ( year !== 2026 || month !== 3 ) return false ;
1717
1818 const timeInMinutes = istTime . getUTCHours ( ) * 60 + istTime . getUTCMinutes ( ) ;
19- const startMins = 9 * 60 + 30 ; // 9:30 AM (570)
2019
2120 if ( day === 28 ) {
21+ const startMinsDay1 = 8 * 60 + 30 ; // 8:30 AM (510)
2222 const endMins = 22 * 60 ; // 10:00 PM (1320)
23- return timeInMinutes >= startMins && timeInMinutes <= endMins ;
23+ return timeInMinutes >= startMinsDay1 && timeInMinutes <= endMins ;
2424 }
2525
2626 if ( day === 29 ) {
27+ const startMinsDay2 = 9 * 60 + 30 ; // 9:30 AM (570)
2728 const endMins = 12 * 60 ; // 12:00 PM (720)
28- return timeInMinutes >= startMins && timeInMinutes <= endMins ;
29+ return timeInMinutes >= startMinsDay2 && timeInMinutes <= endMins ;
2930 }
3031
3132 return false ;
You can’t perform that action at this time.
0 commit comments