We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd86328 commit 16ff6baCopy full SHA for 16ff6ba
Sources/Authenticator/States/AuthenticatorBaseState.swift
@@ -250,10 +250,14 @@ public class AuthenticatorBaseState: ObservableObject {
250
}
251
252
253
-extension AuthenticatorBaseState: Equatable {
+extension AuthenticatorBaseState: Equatable, Hashable {
254
public static func == (lhs: AuthenticatorBaseState, rhs: AuthenticatorBaseState) -> Bool {
255
lhs === rhs
256
257
+
258
+ public func hash(into hasher: inout Hasher){
259
+ hasher.combine(ObjectIdentifier(self))
260
+ }
261
262
263
extension AuthenticatorBaseState: AuthenticatorLogging {}
0 commit comments