Fixed wrong login state
This commit is contained in:
parent
d0da635fe5
commit
6d297256d1
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ export const juggl = {
|
||||||
var userId = localStorage.getItem("userId");
|
var userId = localStorage.getItem("userId");
|
||||||
var apiKey = localStorage.getItem("apiKey");
|
var apiKey = localStorage.getItem("apiKey");
|
||||||
|
|
||||||
if (userId === undefined || apiKey === undefined) {
|
if (userId == undefined || apiKey == undefined) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue