diff --git a/ts/components/conversation/message/DateBreak.tsx b/ts/components/conversation/message/DateBreak.tsx index 08706e614..81dbaefd1 100644 --- a/ts/components/conversation/message/DateBreak.tsx +++ b/ts/components/conversation/message/DateBreak.tsx @@ -18,11 +18,6 @@ const DateBreakText = styled.div` export const MessageDateBreak = (props: { timestamp: number; messageId: string }) => { const { timestamp, messageId } = props; const text = moment(timestamp).calendar(undefined, { - lastDay: '[Yesterday at] LT', - sameDay: '[Today at] LT', - nextDay: '[Tomorrow at] LT', - lastWeek: '[last] dddd [at] LT', - nextWeek: 'dddd [at] LT', sameElse: 'llll', });