Skip to content

Fix: Spelling mistake #93

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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