fix(#28): add right arrow to BreakRule step and correct back nav

- BreakRule step now shows a right arrow that advances using current selection
- Back navigation from BreakRule returns to Race To instead of exiting to list

Refs #28
This commit is contained in:
Frank Schwenk
2025-10-30 13:47:13 +01:00
parent ed90b47348
commit 77173718c1
2 changed files with 6 additions and 0 deletions

View File

@@ -84,6 +84,9 @@ export default function NewGameScreen({
case 'raceTo':
onStepChange('gameType');
break;
case 'breakRule':
onStepChange('raceTo');
break;
case 'breakOrder':
onStepChange('breakRule');
break;