Skip to content

Commit

Permalink
Merge pull request #3235 from OlympusDAO/fixRelativeDate
Browse files Browse the repository at this point in the history
remove redundant 'in'
  • Loading branch information
brightiron authored Nov 20, 2024
2 parents 23c3f98 + 9a3f8c5 commit 8c957c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Governance/Proposals/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const ProposalPage = () => {
)}
<Typography fontSize={"18px"} fontWeight={600}>
{pending && proposalDetails.startDate ? (
`Voting Starts in ${DateTime.fromJSDate(proposalDetails.startDate).toRelative({
`Voting Starts ${DateTime.fromJSDate(proposalDetails.startDate).toRelative({
base: DateTime.fromJSDate(currentBlockTime),
})}`
) : proposalDetails.status === "Succeeded" ? (
Expand Down

0 comments on commit 8c957c3

Please sign in to comment.