formatDate()

in src/utils/datetime.js [3:12]


    formatDate(dateStr) {
      return (
        new Date(dateStr).toLocaleString('en-US', {
          year: 'numeric',
          month: 'long',
          day: 'numeric',
          timeZone: 'UTC',
        }) || ''
      );
    },