diff --git a/native/chat/message-list.react.js b/native/chat/message-list.react.js --- a/native/chat/message-list.react.js +++ b/native/chat/message-list.react.js @@ -197,7 +197,10 @@ const { messageListData, startReached } = this.props; const footer = startReached ? this.ListFooterComponent : undefined; let relationshipPrompt = null; - if (this.props.threadInfo.type === threadTypes.GENESIS_PERSONAL) { + if ( + this.props.threadInfo.type === threadTypes.GENESIS_PERSONAL || + this.props.threadInfo.type === threadTypes.PERSONAL + ) { relationshipPrompt = ( <RelationshipPrompt pendingPersonalThreadUserInfo={ diff --git a/web/chat/chat-message-list.react.js b/web/chat/chat-message-list.react.js --- a/web/chat/chat-message-list.react.js +++ b/web/chat/chat-message-list.react.js @@ -294,7 +294,10 @@ const messages = messageListData.map(this.renderItem); let relationshipPrompt = null; - if (threadInfo.type === threadTypes.GENESIS_PERSONAL) { + if ( + threadInfo.type === threadTypes.GENESIS_PERSONAL || + threadInfo.type === threadTypes.PERSONAL + ) { const otherMembers = threadOtherMembers( threadInfo.members, this.props.viewerID,