diff options
Diffstat (limited to 'app/components/Account.js')
| -rw-r--r-- | app/components/Account.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/components/Account.js b/app/components/Account.js index 174d486273..12f3c1b6a8 100644 --- a/app/components/Account.js +++ b/app/components/Account.js @@ -27,7 +27,7 @@ export default class Account extends Component { render() { let paidUntil = moment(this.props.user.paidUntil); let formattedAccountId = formatAccount(this.props.user.account); - let formattedPaidUntil = paidUntil.format('hA, D MMMM YYYY'); + let formattedPaidUntil = paidUntil.format('hA, D MMMM YYYY').toUpperCase(); let isOutOfTime = paidUntil.isSameOrBefore(moment()); return ( |
