feat(practice): add 30 and 45 minute session duration options

Extends session duration choices from [5, 10, 15, 20] to [5, 10, 15, 20, 30, 45] minutes, allowing for longer practice sessions with more problems.

🤖 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-09 21:01:13 -06:00
parent c40543ac64
commit e42766c893
1 changed files with 2 additions and 2 deletions

View File

@ -351,8 +351,8 @@ export function ConfigureClient({
>
How long today?
</label>
<div className={css({ display: 'flex', gap: '0.5rem' })}>
{[5, 10, 15, 20].map((mins) => (
<div className={css({ display: 'flex', gap: '0.5rem', flexWrap: 'wrap' })}>
{[5, 10, 15, 20, 30, 45].map((mins) => (
<button
key={mins}
type="button"