Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
MonilBhavsar committed Jun 19, 2023
1 parent 8cbc40c commit 1af376d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/components/MentionSuggestions.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/report/ReportActionCompose.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<View
style={[
Expand Down

0 comments on commit 1af376d

Please sign in to comment.