Skip to content

Commit

Permalink
Show current date for queueStart when there is no value
Browse files Browse the repository at this point in the history
  • Loading branch information
thevolcanomanishere committed Dec 19, 2024
1 parent cdb61d3 commit 3183cb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export const ProposalTimeline = ({
if (status !== ProposalStatus.PendingQueue) {
steps.push({
title: "Proposal Queued",
date: proposal.queueStart,
date: proposal.queueStart ?? new Date().getTime() / 1000,
isActive: status === ProposalStatus.InQueue,
});

Expand Down

0 comments on commit 3183cb4

Please sign in to comment.