Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
phantumcode committed Sep 10, 2024
1 parent a847041 commit 3bb37f6
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 @@ -64,7 +64,7 @@ extension SignUpInput {
if let devProvidedData {
return devProvidedData.compactMap { key, value in
return CognitoIdentityProviderClientTypes.AttributeType(name: key, value: value)
} await + cognitoValidationData ?? []
} + (await cognitoValidationData ?? [])
}
return await cognitoValidationData
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import AWSPluginsCore
import Foundation
@testable import AWSCognitoAuthPlugin

public extension DeviceMetadata {
extension DeviceMetadata {

init(from decoder: Decoder) throws {
self = .noData
Expand Down

0 comments on commit 3bb37f6

Please sign in to comment.