fix: refresh dashboard access state

This commit is contained in:
unknown
2026-07-22 19:45:11 +09:00
parent 3efe493f9f
commit 7cbc660679

View File

@@ -44,6 +44,8 @@ export const DashboardPage: React.FC = () => {
useEffect(() => {
loadDashboard();
const t = setInterval(loadDashboard, 3000);
return () => clearInterval(t);
}, []);
const deleteCancelled = async (target: VisitRequestView) => {