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:
parent
5730bd6112
commit
1a7945dd0b
|
|
@ -256,7 +256,7 @@ export function DashboardClient({
|
|||
|
||||
// Handle resuming the current session
|
||||
const handleResumeSession = useCallback(() => {
|
||||
router.push(`/practice/${studentId}/session`)
|
||||
router.push(`/practice/${studentId}`)
|
||||
}, [studentId, router])
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in New Issue