Speed up checkpoint auto-advance (1000ms -> 400ms)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -281,10 +281,10 @@ export function FlowchartWalker({
|
||||
expected: result?.expected ?? value,
|
||||
userAnswer: value,
|
||||
})
|
||||
// Auto-advance after short delay
|
||||
// Auto-advance quickly after correct answer
|
||||
setTimeout(() => {
|
||||
advanceToNext(undefined, value as ProblemValue, true)
|
||||
}, 1000)
|
||||
}, 400)
|
||||
} else {
|
||||
// Wrong answer
|
||||
setWrongAttempts((prev) => prev + 1)
|
||||
|
||||
Reference in New Issue
Block a user