SwiftUI 카카오 로그인 시 Software caused connection abort 에러 입니다

iOS 13 이상 이시라면

아래 링크의 iOS 13 이상 일 시 SceneDelegate.swift 수정 부분 확인 부탁 드려요

https://developers.kakao.com/docs/latest/ko/kakaologin/ios

class SceneDelegate: UIResponder, UIWindowSceneDelegate {
    ...
    func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
        if let url = URLContexts.first?.url {
            if (AuthApi.isKakaoTalkLoginUrl(url)) {
                _ = AuthController.handleOpenUrl(url: url)
            }
        }
    }
    ...
}