diff --git a/src/components/FullscreenLoadingIndicator.js b/src/components/FullscreenLoadingIndicator.js index 2ef673b8d84..e8efeb75474 100644 --- a/src/components/FullscreenLoadingIndicator.js +++ b/src/components/FullscreenLoadingIndicator.js @@ -39,5 +39,6 @@ const FullScreenLoadingIndicator = ({visible, style}) => { FullScreenLoadingIndicator.propTypes = propTypes; FullScreenLoadingIndicator.defaultProps = defaultProps; +FullScreenLoadingIndicator.displayName = 'FullScreenLoadingIndicator'; export default FullScreenLoadingIndicator; diff --git a/src/components/ReimbursementAccountLoadingIndicator.js b/src/components/ReimbursementAccountLoadingIndicator.js index 9555ee35013..c949cbecfba 100644 --- a/src/components/ReimbursementAccountLoadingIndicator.js +++ b/src/components/ReimbursementAccountLoadingIndicator.js @@ -44,5 +44,6 @@ const ReimbursementAccountLoadingIndicator = ({translate, isSubmittingVerificati ); ReimbursementAccountLoadingIndicator.propTypes = propTypes; +ReimbursementAccountLoadingIndicator.displayName = 'ReimbursementAccountLoadingIndicator'; export default withLocalize(ReimbursementAccountLoadingIndicator);