From 5abbe1ded7c9e28ed86f3aa2e890d48ef65c01b4 Mon Sep 17 00:00:00 2001 From: htlee Date: Tue, 17 Mar 2026 15:51:36 +0900 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20=ED=95=AD=EA=B3=B5=EA=B8=B0=20?= =?UTF-8?q?API=20=ED=8F=B4=EB=A7=81=20=EC=A3=BC=EA=B8=B0=2015=EC=B4=88/25?= =?UTF-8?q?=EC=B4=88=20=E2=86=92=2060=EC=B4=88=20(Rate=20Limit=20=EB=8C=80?= =?UTF-8?q?=EC=9D=91)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 22eb2bb..7e5c671 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -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]);