Skip to content

Commit caf75b6

Browse files
Add missing props to AuthLoadingScreen
Otherwise this.props.navigation will not be available in _bootstrapAsync
1 parent 4fb9c92 commit caf75b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/auth-flow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ import {
5454
} from 'react-native';
5555

5656
class AuthLoadingScreen extends React.Component {
57-
constructor() {
58-
super();
57+
constructor(props) {
58+
super(props);
5959
this._bootstrapAsync();
6060
}
6161

0 commit comments

Comments
 (0)