diff --git a/src/components/OptionRow.js b/src/components/OptionRow.js index 1a8725e592b7..14b16949de70 100644 --- a/src/components/OptionRow.js +++ b/src/components/OptionRow.js @@ -135,7 +135,7 @@ class OptionRow extends Component { // We only create tooltips for the first 10 users or so since some reports have hundreds of users, causing performance to degrade. const displayNamesWithTooltips = ReportUtils.getDisplayNamesWithTooltips( - (this.props.option.participantsList || this.props.option.accountID ? [this.props.option] : []).slice(0, 10), + (this.props.option.participantsList || (this.props.option.accountID ? [this.props.option] : [])).slice(0, 10), isMultipleParticipant, ); let subscriptColor = themeColors.appBG;