Skip to content

Commit

Permalink
Merge pull request #18520 from honnamkuan/18240
Browse files Browse the repository at this point in the history
render loader instead of blank under Onfido flow
  • Loading branch information
puneetlath authored May 8, 2023
2 parents d4ed233 + d7d545e commit 6f0949b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Onfido/index.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import onfidoPropTypes from './onfidoPropTypes';
import CONST from '../../CONST';
import withLocalize, {withLocalizePropTypes} from '../withLocalize';
import Log from '../../libs/Log';
import FullscreenLoadingIndicator from '../FullscreenLoadingIndicator';

const propTypes = {
...withLocalizePropTypes,
Expand Down Expand Up @@ -88,7 +89,7 @@ class Onfido extends React.Component {
}

render() {
return null;
return <FullscreenLoadingIndicator />;
}
}

Expand Down

0 comments on commit 6f0949b

Please sign in to comment.