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 63b7d16 commit 9c8c3d7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/webapp/src/pages/election/round-video-upload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,7 @@ 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 9c8c3d7

Please sign in to comment.