fix(practice): correct route path for resume session

Change /practice/[studentId]/session to /practice/[studentId] since the
active session page is at the root [studentId] path, not a /session subfolder.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock
2025-12-11 12:23:04 -06:00
parent 5730bd6112
commit 1a7945dd0b

View File

@@ -256,7 +256,7 @@ export function DashboardClient({
// Handle resuming the current session // Handle resuming the current session
const handleResumeSession = useCallback(() => { const handleResumeSession = useCallback(() => {
router.push(`/practice/${studentId}/session`) router.push(`/practice/${studentId}`)
}, [studentId, router]) }, [studentId, router])
return ( return (