chat: don't show green line

This commit is contained in:
Logan Allen 2020-08-11 11:35:55 -07:00
parent 7abeebc672
commit 92fd1c2af5

View File

@ -174,7 +174,9 @@ export class ChatWindow extends Component {
<ChatMessage
unreadRef={this.unreadReference}
isLastUnread={
props.unreadCount > 0 && i === props.unreadCount - 1
props.unreadCount > 0 &&
i === props.unreadCount - 1 &&
state.numPages !== 1
}
msg={msg}
previousMsg={messages[i - 1]}