diff --git a/src/components/settings/SettingsScrollView.tsx b/src/components/settings/SettingsScrollView.tsx index 353f799..415b30a 100644 --- a/src/components/settings/SettingsScrollView.tsx +++ b/src/components/settings/SettingsScrollView.tsx @@ -16,6 +16,12 @@ export default function SettingsScrollView() { const roundnessString = `${Math.round(settings.roundness * 100)}%`; return ( + updateSetting({ showHints: value })} + initialValue={settings.showHints} + /> updateSetting({ roundness: value })} caption={roundnessString} /> - updateSetting({ showHints: value })} - initialValue={settings.showHints} - /> ) }