From 7cbc66067935ac19815a032caa07df45dffab094 Mon Sep 17 00:00:00 2001 From: unknown <0420301@BOKNET.INTRA> Date: Wed, 22 Jul 2026 19:45:11 +0900 Subject: [PATCH] fix: refresh dashboard access state --- frontend/src/pages/DashboardPage.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/pages/DashboardPage.tsx b/frontend/src/pages/DashboardPage.tsx index 47a80ea..fb5c5e0 100644 --- a/frontend/src/pages/DashboardPage.tsx +++ b/frontend/src/pages/DashboardPage.tsx @@ -44,6 +44,8 @@ export const DashboardPage: React.FC = () => { useEffect(() => { loadDashboard(); + const t = setInterval(loadDashboard, 3000); + return () => clearInterval(t); }, []); const deleteCancelled = async (target: VisitRequestView) => {