Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
b-tarczynski committed Jul 10, 2024
1 parent 5654bb6 commit 3e5abc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ const params = [
'raffleWinnersCount',
'reservePrice',
'minBidIncrement',
'claimingEndTime'
'claimingEndTime',
] as const
2 changes: 1 addition & 1 deletion packages/frontend/src/components/info/VoucherTimeLeft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const VoucherTimeLeft = () => {
return (
<VoucherTimeBox isPeriodExpired={isRedeemingExpired}>
<TimeRow isPeriodExpired={isClaimingExpired}>
<span>{isClaimingExpired ? 'Refund claiming expired on ': 'Refund claiming ends: '}</span>
<span>{isClaimingExpired ? 'Refund claiming expired on ' : 'Refund claiming ends: '}</span>
<RemainingTime>{formatDate(claimingEndTime)}</RemainingTime>
</TimeRow>
<TimeRow isPeriodExpired={isRedeemingExpired}>
Expand Down

0 comments on commit 3e5abc2

Please sign in to comment.