Skip to content

Commit

Permalink
Remove time left conditional margin
Browse files Browse the repository at this point in the history
  • Loading branch information
Redm4x committed Oct 11, 2023
1 parent 0350118 commit 6ee7942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy-web/src/components/deployment/DeploymentListRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ export const DeploymentListRow: React.FunctionComponent<Props> = ({ deployment,
</TableCell>
<TableCell align="center">
{isActive && !!escrowBalance && (
<Box marginLeft={isValidTimeLeft ? "1rem" : 0} display="flex">
<Box display="flex">
<PriceValue
denom={deployment.escrowAccount.balance.denom}
value={udenomToDenom(isActive && hasActiveLeases ? realTimeLeft?.escrow : escrowBalance, 6)}
Expand Down

0 comments on commit 6ee7942

Please sign in to comment.