diff --git a/example/src/App.jsx b/example/src/App.jsx index a1ec43e5..a92e6a2c 100644 --- a/example/src/App.jsx +++ b/example/src/App.jsx @@ -49,7 +49,7 @@ class App extends React.Component { }; state = { - isSignedIn: false, + isSignedIn: undefined, }; /** @@ -78,7 +78,7 @@ class App extends React.Component { photo My App
This is a cool demo app
- {!this.state.isSignedIn && + {this.state.isSignedIn !== undefined && !this.state.isSignedIn &&