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
commit c4ac7a1b6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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