We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 827b168 commit fcdfb02Copy full SHA for fcdfb02
README.md
@@ -106,7 +106,7 @@ class SignInScreen extends React.Component {
106
107
// The component's Local state.
108
state = {
109
- iSignedIn: false // Local signed-in state.
+ isSignedIn: false // Local signed-in state.
110
};
111
112
// Configure FirebaseUI.
@@ -137,7 +137,7 @@ class SignInScreen extends React.Component {
137
}
138
139
render() {
140
- if (!this.state.signedIn) {
+ if (!this.state.isSignedIn) {
141
return (
142
<div>
143
<h1>My App</h1>
0 commit comments