From fe012cbda34defb04dbbdfb5607707d2f3d084a8 Mon Sep 17 00:00:00 2001 From: HyeonJongKim Date: Wed, 5 Nov 2025 16:27:05 +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,IOS=20=EA=B5=AC=EB=B3=84=20=EC=82=AD=EC=A0=9C=20?= =?UTF-8?q?=EC=9D=BC=EA=B4=84=20=EB=A9=94=EC=84=9C=EB=93=9C=EB=A1=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/setting/setting-page.tsx | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/pages/setting/setting-page.tsx b/src/pages/setting/setting-page.tsx index 572bab3..2f77b37 100644 --- a/src/pages/setting/setting-page.tsx +++ b/src/pages/setting/setting-page.tsx @@ -253,20 +253,16 @@ export const SettingPage = () => { callAppAlarmFind(); checkPushNotificationStatus(); loadLoginType(); - loadNotificationSetting(); - loadLanguage(); // 앱이 포어그라운드로 돌아올 때 푸시 알림 권한 상태 재확인 const handleVisibilityChange = () => { if (document.visibilityState === 'visible') { checkPushNotificationStatus(); - loadNotificationSetting(); } }; const handleFocus = () => { checkPushNotificationStatus(); - loadNotificationSetting(); }; document.addEventListener('visibilitychange', handleVisibilityChange); @@ -276,7 +272,7 @@ export const SettingPage = () => { document.removeEventListener('visibilitychange', handleVisibilityChange); window.removeEventListener('focus', handleFocus); }; - }, [callAppAlarmFind, checkPushNotificationStatus, loadLoginType, loadNotificationSetting, loadLanguage]); + }, [callAppAlarmFind, checkPushNotificationStatus, loadLoginType]); return ( <> @@ -285,10 +281,10 @@ export const SettingPage = () => { {/* Android일 때는 앱 내 설정, 아니면 시스템 권한 표시 */}
{t('settings.notificationSettings')}
-