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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user