Merge branch 'master' into chore/client-fsm

This commit is contained in:
Paul Makles
2022-07-01 15:11:39 +01:00
committed by GitHub

View File

@@ -123,7 +123,7 @@ export default observer(({ last_id, renderer, highlight }: Props) => {
if (unread || date) {
render.push(
<MessageDivider
date={dayjs(date).format("LL")}
date={date ? dayjs(date).format("LL") : undefined}
unread={unread}
/>,
);