From b083b5891375639bf07bb12afe13c31c0f64c906 Mon Sep 17 00:00:00 2001 From: Madan Kumar Date: Tue, 16 Feb 2021 15:04:00 +0530 Subject: [PATCH] fix(client): remove extra 'hours' from /donate page (#41113) --- client/src/components/Donation/DonateForm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Donation/DonateForm.js b/client/src/components/Donation/DonateForm.js index 4cd42d6489..745b399247 100644 --- a/client/src/components/Donation/DonateForm.js +++ b/client/src/components/Donation/DonateForm.js @@ -157,7 +157,7 @@ class DonateForm extends Component { } convertToTimeContributed(amount) { - return `${numToCommas((amount / 100) * 50)} hours`; + return numToCommas((amount / 100) * 50); } getFormattedAmountLabel(amount) {