Skip to content

Commit

Permalink
Fix display on stake card
Browse files Browse the repository at this point in the history
  • Loading branch information
neven-s authored and atn4z7 committed Oct 29, 2024
1 parent 3230673 commit a7ba971
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const StakeCard = (props: Props): JSX.Element => {
switch (status) {
case StakeStatus.Ongoing: {
const remainingTime = getReadableDateDuration(
new UTCDate(props.endTimestamp || 0)
new UTCDate((props.endTimestamp || 0) * 1000)
)
return (
<AvaText.Caption color={theme.colorText1}>
Expand Down

0 comments on commit a7ba971

Please sign in to comment.