mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-25 08:30:58 -05:00
Merge branch 'master' into chore/client-fsm
This commit is contained in:
commit
c4ac7a1b6d
1 changed files with 1 additions and 1 deletions
|
@ -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}
|
||||||
/>,
|
/>,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue