From 55899e13085df08b53f93a58eda21992e8214424 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=8F=84=ED=98=95?= <108233361+ShapeKim98@users.noreply.github.com> Date: Tue, 29 Oct 2024 23:18:59 +0900 Subject: [PATCH] =?UTF-8?q?[hotfix]=20=ED=82=A4=20=EB=B6=88=EB=9F=AC?= =?UTF-8?q?=EC=98=A4=EB=8A=94=20=EB=AA=A8=EB=93=88=20main=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Client/SocialLogin/Controller/AppleLoginController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Projects/CoreKit/Sources/Data/Client/SocialLogin/Controller/AppleLoginController.swift b/Projects/CoreKit/Sources/Data/Client/SocialLogin/Controller/AppleLoginController.swift index 45b13e95..f8c243c9 100644 --- a/Projects/CoreKit/Sources/Data/Client/SocialLogin/Controller/AppleLoginController.swift +++ b/Projects/CoreKit/Sources/Data/Client/SocialLogin/Controller/AppleLoginController.swift @@ -81,7 +81,7 @@ public final class AppleLoginController: NSObject, ASAuthorizationControllerDele extension AppleLoginController { func makeJWT() -> String { - guard let appleKey = Bundle.module.object(forInfoDictionaryKey: "AppleKeyID") as? String else { return "" } + guard let appleKey = Bundle.main.object(forInfoDictionaryKey: "AppleKeyID") as? String else { return "" } let header = Header(kid: appleKey) struct PokitClaims: Claims { let iss: String @@ -93,7 +93,7 @@ extension AppleLoginController { let iat = Int(Date().timeIntervalSince1970) let exp = iat + 3600 - guard let iss = Bundle.module.object(forInfoDictionaryKey: "TeamID") as? String else { return "" } + guard let iss = Bundle.main.object(forInfoDictionaryKey: "TeamID") as? String else { return "" } let claims = PokitClaims( iss: iss, iat: iat,