Fix messenger scrolling

This commit is contained in:
Bill 2022-03-15 12:05:26 -04:00
parent d8f92c053e
commit e069efcb10

View File

@ -302,8 +302,8 @@ export const FriendsMessengerView: FC<{}> = props =>
<FontAwesomeIcon icon="times" />
</Button>
</Flex>
<Column fit innerRef={ messagesBox } className="bg-muted p-2 rounded chat-messages">
<Column overflow="auto">
<Column fit className="bg-muted p-2 rounded chat-messages">
<Column innerRef={ messagesBox } overflow="auto">
<FriendsMessengerThreadView thread={ messageThreads[activeThreadIndex] } />
</Column>
</Column>