When you send a message, scroll it into view

This commit is contained in:
Scott Nonnenberg
2021-11-19 09:19:55 -08:00
committed by GitHub
parent b9518ed0c5
commit a3525c16ef
14 changed files with 387 additions and 438 deletions

View File

@@ -18,7 +18,6 @@ import type { AttachmentDraftType } from '../../types/Attachment';
export type SmartForwardMessageModalProps = {
attachments?: Array<AttachmentDraftType>;
conversationId: string;
doForwardMessage: (
selectedContacts: Array<string>,
messageBody?: string,
@@ -42,7 +41,6 @@ const mapStateToProps = (
): DataPropsType => {
const {
attachments,
conversationId,
doForwardMessage,
isSticker,
messageBody,
@@ -59,7 +57,6 @@ const mapStateToProps = (
return {
attachments,
candidateConversations,
conversationId,
doForwardMessage,
getPreferredBadge: getPreferredBadgeSelector(state),
i18n: getIntl(state),