diff --git a/src/common/helper.js b/src/common/helper.js index 05ed2c5c..cb29890a 100644 --- a/src/common/helper.js +++ b/src/common/helper.js @@ -2062,6 +2062,8 @@ function formatDateTimeEDT (date) { function formatDateEDT (date) { if (date) { return moment(date).tz('America/New_York').format('MMM D, YYYY') + } else { + return 'TBD' } }