Skip to content

Commit fcdfb02

Browse files
Fixing sample
1 parent 827b168 commit fcdfb02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class SignInScreen extends React.Component {
106106

107107
// The component's Local state.
108108
state = {
109-
iSignedIn: false // Local signed-in state.
109+
isSignedIn: false // Local signed-in state.
110110
};
111111

112112
// Configure FirebaseUI.
@@ -137,7 +137,7 @@ class SignInScreen extends React.Component {
137137
}
138138

139139
render() {
140-
if (!this.state.signedIn) {
140+
if (!this.state.isSignedIn) {
141141
return (
142142
<div>
143143
<h1>My App</h1>

0 commit comments

Comments
 (0)