feat(frontend): UI 브랜딩 + 배포 설정 + 폴링 주기 조정 #16

병합
htlee feature/ui-branding 에서 develop 로 3 commits 를 머지했습니다 2026-03-17 15:58:57 +09:00
Showing only changes of commit 5abbe1ded7 - Show all commits

파일 보기

@ -266,7 +266,7 @@ function AuthenticatedApp({ user, onLogout }: AuthenticatedAppProps) {
}
};
load();
const interval = setInterval(load, 15_000);
const interval = setInterval(load, 60_000);
return () => clearInterval(interval);
}, [appMode, refreshKey]);
@ -325,7 +325,7 @@ function AuthenticatedApp({ user, onLogout }: AuthenticatedAppProps) {
if (result.length > 0) setBaseAircraftKorea(result);
};
load();
const interval = setInterval(load, 25_000);
const interval = setInterval(load, 60_000);
return () => clearInterval(interval);
}, [refreshKey]);