You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, src/pages-mobile/dashboard/attendance/[classId].tsx and src/pages-desktop/dashboard/attendance/[classId].tsx duplicate data fetching, local storage hydration, offline handling, and manual retry states.
Tasks
Create src/hooks/use-attendance-detail.ts hook.
Move cache loading, network fetch, and manual retry state into the hook.
Refactor both Mobile and Desktop attendance detail pages to consume the hook.
Description
Currently,
src/pages-mobile/dashboard/attendance/[classId].tsxandsrc/pages-desktop/dashboard/attendance/[classId].tsxduplicate data fetching, local storage hydration, offline handling, and manual retry states.Tasks
src/hooks/use-attendance-detail.tshook.