refactor(levels): remove Time and Pass sections from kyu details

Remove the Time and Pass requirement cards since we don't have actual tests
implemented. Now only showing Add/Sub, Multiply, and Divide requirements.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock
2025-10-20 11:28:12 -05:00
parent 7028db0263
commit d90b5d5532

View File

@@ -229,23 +229,8 @@ function parseKyuDetails(rawText: string) {
value: `${match[1]}-digit total (${match[2]} problems)`,
})
}
} else if (line.includes('Time:')) {
// Parse time and pass requirements
const timeMatch = line.match(/(\d+) min/)
const passMatch = line.match(/≥\s*(\d+)\/(\d+)/)
if (timeMatch && passMatch) {
sections.push({
icon: '⏱️',
label: 'Time',
value: `${timeMatch[1]} minutes`,
})
sections.push({
icon: '✅',
label: 'Pass',
value: `${passMatch[1]}/${passMatch[2]} pts`,
})
}
}
// Skip Time and Pass requirements since we don't have tests implemented
}
return sections