Skip to content

Commit

Permalink
fix(webapp): fixed all dates format
Browse files Browse the repository at this point in the history
  • Loading branch information
AngeloCG97 committed Mar 31, 2023
1 parent 9c8c3d7 commit f74f210
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/webapp/src/pages/election/round-video-upload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,9 @@ const Header = ({
winner && isValidDelegate(winner.account)
? `Delegate: ${winner.name}`
: roundStartTime && roundEndTime
? `${roundStartTime.utc().format("LT")} - ${roundEndTime.utc().format("LT")} UTC`
? `${roundStartTime.utc().format("LT")} - ${roundEndTime
.utc()
.format("LT")} UTC`
: "Consensus not achieved";

return (
Expand Down

0 comments on commit f74f210

Please sign in to comment.