Skip to content

Commit

Permalink
Fix: Spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie-brannan committed Jan 31, 2025
1 parent 852adbc commit 024ce04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ final class InterruptionResolverFactory: InterruptionResolverFactoryProtocol {
// pending veryfication
let loginError = LoginApiError<T>(error: error, interruption: .pendingVerification(regToken: regToken))
completion(.failure(loginError))
case .conflitingAccounts:
case .conflictingAccounts:
// conflicting accounts
resolver = LinkAccountsResolver(originalError: error, regToken: regToken, businessDelegate: businessDelegate, dataResponse: dataResponse, completion: completion)
resolver?.start?()
Expand Down
2 changes: 1 addition & 1 deletion GigyaSwift/Models/Interruption/InterruptionEnum.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Foundation
public enum Interruption: Int, CaseIterable {
case pendingRegistration = 206001
case pendingVerification = 206002
case conflitingAccounts = 409003
case conflictingAccounts = 409003
case pendingTwoFactorRegistration = 403102
case pendingTwoFactorVerification = 403101
case accountLinked = 200009
Expand Down

0 comments on commit 024ce04

Please sign in to comment.