release: 2026-03-17.4 — UI 브랜딩 + 배포 설정 + 폴링 조정 #18

병합
htlee develop 에서 main 로 6 commits 를 머지했습니다 2026-03-17 16:00:00 +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]);