Skip to content

Commit

Permalink
worked on review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
harsh62 committed Jan 12, 2024
1 parent 54c7c15 commit cc89dd2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ class HostedUIASWebAuthenticationSession: NSObject, HostedUISessionBehavior {

return try await withCheckedThrowingContinuation { [weak self]
(continuation: CheckedContinuation<[URLQueryItem], Error>) in
guard let self = self else { return }
guard let self else { return }

let aswebAuthenticationSession = createAuthenticationSession(
url: url,
callbackURLScheme: callbackScheme,
completionHandler: { [weak self] url, error in
guard let self = self else { return }
guard let self else { return }
if let url = url {
let urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false)
let queryItems = urlComponents?.queryItems ?? []
Expand Down

0 comments on commit cc89dd2

Please sign in to comment.