Skip to content

Commit

Permalink
fix(Coinify): render string if subscription does not have endTime
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Welber committed Jun 11, 2018
1 parent 98999aa commit ffdc546
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -80,7 +80,7 @@ class RecurringOrder extends React.Component {
</TableCell>
<TableCell width='20%'>
<TableCell width='100%'>
{ dateHelper(subscription) }
{ !path(['endTime'], subscription) ? <FormattedMessage id='scenes.buysell.orderhistory.recurring.order.untilcancel' defaultMessage='Until you cancel' /> : dateHelper(subscription) }
</TableCell>
</TableCell>
</TableRow>
Expand Down

0 comments on commit ffdc546

Please sign in to comment.