Skip to content

Commit

Permalink
πŸ› Fix infinite loading after logout
Browse files Browse the repository at this point in the history
  • Loading branch information
nwingt committed Aug 11, 2023
1 parent f1cdca3 commit 5cf6b23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/screens/auth-loading-screen/auth-loading-screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,10 @@ export class AuthLoadingScreen extends React.Component<AuthLoadingScreenProps, {
return
} catch (error) {
logError(error)
} finally {
this.props.userStore.setIsSigningIn(false)
}
}
this.props.userStore.setIsSigningIn(false)
this.props.userStore.authCore.setHasSignedIn(false)
this.props.navigation.navigate('Auth')
}
Expand Down

0 comments on commit 5cf6b23

Please sign in to comment.