nice animation for log in and out

This commit is contained in:
talksik
2021-12-14 18:42:18 -08:00
parent 15211ab3b6
commit 2c53ee9564
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ final class AuthSessionStore: ObservableObject, SessionStore {
let clientID = FirebaseApp.app()?.options.clientID
self.GIDconfig = GIDConfiguration(clientID: clientID!)
print(clientID)
print("the google client id: prolly shouldn't be printing this: \(clientID)")
self.setupAuthListen()
}
+1 -1
View File
@@ -18,7 +18,7 @@ struct ContentView: View {
case SessionState.isLoggedOut:
WelcomeView()
}
}
}.animation(.default, value:authSessionStore.sessionState)
}
}