Skip to content

Commit 3ec23dd

Browse files
morganchen12ncooke3
authored andcommitted
Copy over Morgan's work
1 parent 95c7059 commit 3ec23dd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

FirebaseAuth/Sources/Swift/ActionCode/ActionCodeInfo.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import Foundation
1616

1717
/// Manages information regarding action codes.
18-
@objc(FIRActionCodeInfo) open class ActionCodeInfo: NSObject {
18+
@objc(FIRActionCodeInfo) public final class ActionCodeInfo: NSObject, Sendable {
1919
/// The operation being performed.
2020
@objc public let operation: ActionCodeOperation
2121

FirebaseAuth/Sources/Swift/ActionCode/ActionCodeSettings.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
import Foundation
1616

1717
/// Used to set and retrieve settings related to handling action codes.
18-
@objc(FIRActionCodeSettings) open class ActionCodeSettings: NSObject {
18+
@objc(FIRActionCodeSettings) open class ActionCodeSettings: NSObject,
19+
@unchecked Sendable /* TODO: sendable */ {
1920
/// This URL represents the state/Continue URL in the form of a universal link.
2021
///
2122
/// This URL can should be constructed as a universal link that would either directly open

0 commit comments

Comments
 (0)