fix(client): remove extra 'hours' from /donate page (#41113)

This commit is contained in:
Madan Kumar
2021-02-16 15:04:00 +05:30
committed by GitHub
parent aac39c9c08
commit b083b58913

View File

@ -157,7 +157,7 @@ class DonateForm extends Component {
} }
convertToTimeContributed(amount) { convertToTimeContributed(amount) {
return `${numToCommas((amount / 100) * 50)} hours`; return numToCommas((amount / 100) * 50);
} }
getFormattedAmountLabel(amount) { getFormattedAmountLabel(amount) {