diff --git a/src/components/MentionSuggestions.js b/src/components/MentionSuggestions.js index 5e50ce9713c7..e8fc3003bf56 100644 --- a/src/components/MentionSuggestions.js +++ b/src/components/MentionSuggestions.js @@ -63,8 +63,6 @@ function MentionSuggestions(props) { * @returns {JSX.Element} */ const renderSuggestionMenuItem = (item) => { - console.debug(item); - console.debug(props.prefix); const isIcon = item.text === CONST.AUTO_COMPLETE_SUGGESTER.HERE_TEXT; const styledDisplayName = getStyledTextArray(item.text, props.prefix); const styledHandle = getStyledTextArray(item.alternateText, props.prefix); diff --git a/src/pages/home/report/ReportActionCompose.js b/src/pages/home/report/ReportActionCompose.js index 1eea53afff3d..35e33bb5170a 100644 --- a/src/pages/home/report/ReportActionCompose.js +++ b/src/pages/home/report/ReportActionCompose.js @@ -911,7 +911,7 @@ class ReportActionCompose extends React.Component { const isFullComposerAvailable = this.state.isFullComposerAvailable && !_.isEmpty(this.state.value); const hasReportRecipient = _.isObject(reportRecipient) && !_.isEmpty(reportRecipient); const maxComposerLines = this.props.isSmallScreenWidth ? CONST.COMPOSER.MAX_LINES_SMALL_SCREEN : CONST.COMPOSER.MAX_LINES; - console.debug(this.state.suggestedMentions); + return (