You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The contests page should make it clear what status each contest has currently. This can be done in the form of an icon in front of the date, same as on the WCA website.
For ongoing contests, use the hourglass-half icon. This status should be determined using the same logic as on line 26 in client/app/competitions/[id]/page.tsx (that logic should be moved into a new getIsContestOngoing() function in client/helpers/utilityFunctions.ts).
For finished contests (contest.state === ContestState.Finished), use the hourglass-start icon rotated 180 degrees, because the hourglass-end icon requires the premium version of Font Awesome.
The text was updated successfully, but these errors were encountered:
The contests page should make it clear what status each contest has currently. This can be done in the form of an icon in front of the date, same as on the WCA website.
contest.state === ContestState.Approved
), use thehourglass-start
Font Awesome iconhourglass-half
icon. This status should be determined using the same logic as on line 26 inclient/app/competitions/[id]/page.tsx
(that logic should be moved into a newgetIsContestOngoing()
function inclient/helpers/utilityFunctions.ts
).contest.state === ContestState.Finished
), use thehourglass-start
icon rotated 180 degrees, because thehourglass-end
icon requires the premium version of Font Awesome.The text was updated successfully, but these errors were encountered: