Skip to content
Snippets Groups Projects
Commit 64046acc authored by Quique's avatar Quique
Browse files

typo: Loged -> Logged

The past participle of log in is logged in.
<https://www.wordhippo.com/what-is/the-past-tense-of/log_in.html>
parent 0bd26243
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,7 @@ class App extends React.Component {
this.storeState("", "", "");
}
isLoged() {
isLoggedIn() {
if (!this.state.token) {
return false;
}
......@@ -148,7 +148,7 @@ class App extends React.Component {
render() {
let component = <Panel onLogout={this.logout} />;
if (!this.isLoged()) {
if (!this.isLoggedIn()) {
component = <SignIn onLogin={this.login} />;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment