diff --git a/src/pages/iou/IOUCurrencySelection.js b/src/pages/iou/IOUCurrencySelection.js index 3121ecae15450..09ad555d5c044 100644 --- a/src/pages/iou/IOUCurrencySelection.js +++ b/src/pages/iou/IOUCurrencySelection.js @@ -204,9 +204,15 @@ class IOUCurrencySelection extends Component { )} renderSectionHeader={({section: {title}}) => ( - - {title} - + {this.state.currencyData.length === 0 ? ( + + {this.props.translate('common.noResultsFound')} + + ) : ( + + {title} + + )} )} />