From 57e4557d231880b16a19136eb21593654e29f394 Mon Sep 17 00:00:00 2001 From: Tyna William <65050204+tynawilliam@users.noreply.github.com> Date: Wed, 14 Jun 2023 07:32:46 -0400 Subject: [PATCH] Merge pull request #13450 from overleaf/tw-add-renewal-time fix subscription renewal date formatting to include UTC time GitOrigin-RevId: 15f30c17a4f7fd866c76fdf343f1d1b02b45ba9c --- .../web/app/src/Features/Subscription/SubscriptionFormatters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/app/src/Features/Subscription/SubscriptionFormatters.js b/services/web/app/src/Features/Subscription/SubscriptionFormatters.js index 740b2ba703..0490d8045a 100644 --- a/services/web/app/src/Features/Subscription/SubscriptionFormatters.js +++ b/services/web/app/src/Features/Subscription/SubscriptionFormatters.js @@ -40,6 +40,6 @@ module.exports = { if (!date) { return null } - return dateformat(date, 'dS mmmm yyyy') + return dateformat(date, 'mmmm dS, yyyy h:MM TT Z', true) }, }