diff --git a/packages/react/src/lib/formatTimestamp.js b/packages/react/src/lib/formatTimestamp.js index c9555ff15..7e8a68f5e 100644 --- a/packages/react/src/lib/formatTimestamp.js +++ b/packages/react/src/lib/formatTimestamp.js @@ -12,8 +12,10 @@ const formatTimestamp = (timestamp) => { return isDifferentDay ? `${date.toLocaleDateString('en-US', { - weekday: 'long', - })} ${formattedTime}` + month: 'short', + day: 'numeric', + year: 'numeric', + })}, ${formattedTime}` : formattedTime; };