From 2c600be2ef45fd3e6cc9589cfa3ae019e8d215b3 Mon Sep 17 00:00:00 2001 From: Nick Cooke Date: Wed, 1 Apr 2026 17:55:53 -0400 Subject: [PATCH 1/2] fix(auth): quick fix for Auth.User sednability error --- .../ViewControllers/UserViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentication/AuthenticationExample/ViewControllers/UserViewController.swift b/authentication/AuthenticationExample/ViewControllers/UserViewController.swift index 365dc7364..9ab6e5e68 100644 --- a/authentication/AuthenticationExample/ViewControllers/UserViewController.swift +++ b/authentication/AuthenticationExample/ViewControllers/UserViewController.swift @@ -13,7 +13,7 @@ // limitations under the License. import UIKit -import FirebaseAuth +@preconcurrency import FirebaseAuth import AuthenticationServices import CryptoKit From 44abf73ad28666150a032297d7124a9b96417ea1 Mon Sep 17 00:00:00 2001 From: Nick Cooke <36927374+ncooke3@users.noreply.github.com> Date: Wed, 1 Apr 2026 17:59:49 -0400 Subject: [PATCH 2/2] Update authentication/AuthenticationExample/ViewControllers/UserViewController.swift Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- .../ViewControllers/UserViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/authentication/AuthenticationExample/ViewControllers/UserViewController.swift b/authentication/AuthenticationExample/ViewControllers/UserViewController.swift index 9ab6e5e68..79d45be42 100644 --- a/authentication/AuthenticationExample/ViewControllers/UserViewController.swift +++ b/authentication/AuthenticationExample/ViewControllers/UserViewController.swift @@ -13,6 +13,7 @@ // limitations under the License. import UIKit +// TODO: Remove @preconcurrency once `FirebaseAuth.User` is Sendable @preconcurrency import FirebaseAuth import AuthenticationServices import CryptoKit