I deleted users in Firebase Console but the "welcomeController" is not showing as It should be , I read something needs to be done with firebase tokens but I am not sure what should I do. If someone has the solution I will be grafetul.
Currently I am using in didFinishLaunchingWithOptions:
if Auth.auth().currentUser?.uid == nil {
self.window?.rootViewController = EntryController()
} else {
self.window?.rootViewController = MainTabBarController()
}
When I delete the user in the console rootView should be EntryController but it is not showing.