From d65dc4151264713c49b519c0e31686cf6d6b7543 Mon Sep 17 00:00:00 2001 From: HyeonJongKim Date: Thu, 6 Nov 2025 16:27:51 +0900 Subject: [PATCH] =?UTF-8?q?-=20=EC=95=88=EB=93=9C=EB=A1=9C=EC=9D=B4?= =?UTF-8?q?=EB=93=9C=20LoginType=20=EC=84=A4=EC=A0=95=20=EC=8B=9C=20Ui=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/entities/alarm/ui/login-type-bottom-sheet.tsx | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/entities/alarm/ui/login-type-bottom-sheet.tsx b/src/entities/alarm/ui/login-type-bottom-sheet.tsx index 0becf46..31da869 100644 --- a/src/entities/alarm/ui/login-type-bottom-sheet.tsx +++ b/src/entities/alarm/ui/login-type-bottom-sheet.tsx @@ -27,20 +27,11 @@ export const LoginTypeBottomSheet = ({ }; const onChangeLoginType = async (type: string) => { if (loginType !== type) { - if (isAndroid) { - setLoginTypeNative(type).then(() => { - setLoginType(type); - onClickToClose(); - }).catch(() => { - onClickToClose(); - }); - } else { if (type === 'BIOMETRIC') { onClickToClose(); registerBiometric().then(() => { onBiometricRegistered?.(); }).catch(() => { - // 에러 처리 }); } else { setLoginTypeNative(type).then(() => { @@ -50,7 +41,6 @@ export const LoginTypeBottomSheet = ({ onClickToClose(); }); } - } } };