From 177f8c1e70fc75682c076257bb30fd858e7fa7bb Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 20 Oct 2025 22:05:01 +0200 Subject: [PATCH] feat(settings): integrate TTSSettings into settings page --- src/components/Settings.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/Settings.tsx b/src/components/Settings.tsx index b6e3f594..ccbf8d65 100644 --- a/src/components/Settings.tsx +++ b/src/components/Settings.tsx @@ -12,6 +12,7 @@ import LayoutBehaviorSettings from './Settings/LayoutBehaviorSettings' import ZapSettings from './Settings/ZapSettings' import RelaySettings from './Settings/RelaySettings' import PWASettings from './Settings/PWASettings' +import TTSSettings from './Settings/TTSSettings' import { useRelayStatus } from '../hooks/useRelayStatus' import VersionFooter from './VersionFooter' @@ -45,6 +46,7 @@ const DEFAULT_SETTINGS: UserSettings = { syncReadingPosition: true, autoMarkAsReadOnCompletion: false, hideBookmarksWithoutCreationDate: true, + ttsDefaultSpeed: 2.1, } interface SettingsProps { @@ -177,6 +179,7 @@ const Settings: React.FC = ({ settings, onSave, onClose, relayPoo +