Any ideas why this error might be showing up when trying it sign in via apple in SwifUI?
_Concurrency/CheckedContinuation.swift:196: Fatal error: SWIFT TASK CONTINUATION MISUSE: createOAuth2Session(provider:success:failure:scopes:) tried to resume its continuation more than once, throwing User cancelled login.!
TL;DR
Developers encountering error message 'SWIFT TASK CONTINUATION MISUSE' in SwiftUI when using Apple OAuth. The issue seems to be related to resuming the continuation more than once. This could be caused by cancelling the login process prematurely. Double-check the logic for handling OAuth login, ensuring the continuation is only resumed once.