Skip to content

Commit

Permalink
fix(auth): skip account initialization when platform has no cleengId
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristiaanScheermeijer committed Aug 5, 2021
1 parent b4e3a22 commit dca2459
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ class App extends Component {
}

initializeFavorites();
initializeAccount();

if (config.cleengId) {
initializeAccount();
}
}

configLoadingHandler = (isLoading: boolean) => {
Expand Down

0 comments on commit dca2459

Please sign in to comment.