Skip to content

Commit 5168a86

Browse files
ihormlsschiessl-bcp
authored andcommitted
Fix ActiveAccounts check
1 parent a504c2d commit 5168a86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/App.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ class App extends React.Component {
374374
_ensureExternalServices() {
375375
setTimeout(() => {
376376
let hasLoggedIn =
377-
AccountStore.getState().myActiveAccounts.length > 0 ||
377+
AccountStore.getState().myActiveAccounts.size > 0 ||
378378
!!AccountStore.getState().passwordAccount;
379379
if (!hasLoggedIn) {
380380
this._ensureExternalServices();

0 commit comments

Comments
 (0)