Merge pull request #13450 from overleaf/tw-add-renewal-time

fix subscription renewal date formatting to include UTC time

GitOrigin-RevId: 15f30c17a4f7fd866c76fdf343f1d1b02b45ba9c
This commit is contained in:
Tyna William
2023-07-17 10:34:52 +00:00
committed by Copybot
parent f038cd4d10
commit 57e4557d23
@@ -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)
},
}