diff --git a/Outpost/Features/Account/SettingsView.swift b/Outpost/Features/Account/SettingsView.swift index badd289..771d4dd 100644 --- a/Outpost/Features/Account/SettingsView.swift +++ b/Outpost/Features/Account/SettingsView.swift @@ -286,6 +286,13 @@ struct SettingsView: View { isOn: session.userPreferences?.rememberLastPath ?? false, onChange: { newValue in Task { await savePreference { $0.rememberLastPath = newValue } } } ) + Divider() + preferenceToggleRow( + "Smart text replacements", + description: "Auto-format text by replacing shortcuts with symbols, dashes, smart quotes, and other typographical elements.", + isOn: session.userPreferences?.smartText ?? false, + onChange: { newValue in Task { await savePreference { $0.smartText = newValue } } } + ) } if let preferencesErrorMessage {