diff --git a/src/App.tsx b/src/App.tsx index 1905e29..f2d75a7 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -38,7 +38,7 @@ function App() { const [stats, setStats] = useState(createInitialStats()); // Experiment mode configuration - const [mode, setMode] = useState('freestyle'); + const [mode, setMode] = useState('demo'); const [currentPreset, setCurrentPreset] = useState('A'); const [presetsCompleted, setPresetsCompleted] = useState([]); const [targetCount, setTargetCount] = useState(0); @@ -580,13 +580,13 @@ function App() {

Study Complete!

You've completed all presets in the study (100 trials). Thank you for participating!

-

You can now export your data or continue experimenting in freestyle mode.

+

You can now export your data or continue experimenting in demo mode.

@@ -96,7 +96,7 @@ export const Instructions: React.FC = ({
diff --git a/src/components/Settings.tsx b/src/components/Settings.tsx index 28ef109..1b2921a 100644 --- a/src/components/Settings.tsx +++ b/src/components/Settings.tsx @@ -98,11 +98,11 @@ export const Settings: React.FC = ({ handleModeChange('freestyle')} + value="demo" + checked={mode === 'demo'} + onChange={() => handleModeChange('demo')} /> - Freestyle Mode + Demo Mode