setServiceLanguageBottomSheetOn(true) }
>
@@ -252,7 +269,7 @@ export const SettingPage = () => {
+
diff --git a/src/types/bridge.ts b/src/types/bridge.ts
index 16c5559..e5a7597 100644
--- a/src/types/bridge.ts
+++ b/src/types/bridge.ts
@@ -71,7 +71,10 @@ export enum BridgeMessageType {
IS_PUSH_NOTIFICATION_ENABLED = 'isPushNotificationEnabled',
// 앱 설정 화면 열기
- OPEN_APP_SETTINGS = 'openAppSettings'
+ OPEN_APP_SETTINGS = 'openAppSettings',
+
+ // 로그인 방식 설정
+ GET_LOGIN_TYPE = 'getLoginType'
}
export interface DeviceInfo {
diff --git a/src/utils/appBridge.ts b/src/utils/appBridge.ts
index a02fd62..85cc242 100644
--- a/src/utils/appBridge.ts
+++ b/src/utils/appBridge.ts
@@ -205,6 +205,11 @@ class AppBridge {
return this.sendMessage(BridgeMessageType.OPEN_APP_SETTINGS);
}
+ // 로그인 방식 설정 조회
+ async getLoginType(): Promise
{
+ return this.sendMessage(BridgeMessageType.GET_LOGIN_TYPE);
+ }
+
// 네이티브 환경 체크
isNativeEnvironment(): boolean {
return !!(