diff --git a/packages/InputView/Sources/InputView/ChatInputTextView.swift b/packages/InputView/Sources/InputView/ChatInputTextView.swift index 8296e91a53..1a69c72a9d 100644 --- a/packages/InputView/Sources/InputView/ChatInputTextView.swift +++ b/packages/InputView/Sources/InputView/ChatInputTextView.swift @@ -1325,7 +1325,7 @@ public final class InputTextView: NSTextView, NSLayoutManagerDelegate, NSTextSto } set { UserDefaults.standard.set(newValue, forKey: "AutomaticQuoteSubstitutionEnabled\(settingsKey)") - super.isAutomaticSpellingCorrectionEnabled = newValue + super.isAutomaticQuoteSubstitutionEnabled = newValue } } @@ -1335,7 +1335,7 @@ public final class InputTextView: NSTextView, NSLayoutManagerDelegate, NSTextSto } set { UserDefaults.standard.set(newValue, forKey: "AutomaticLinkDetectionEnabled\(settingsKey)") - super.isAutomaticSpellingCorrectionEnabled = newValue + super.isAutomaticLinkDetectionEnabled = newValue } } @@ -1345,7 +1345,7 @@ public final class InputTextView: NSTextView, NSLayoutManagerDelegate, NSTextSto } set { UserDefaults.standard.set(newValue, forKey: "AutomaticDataDetectionEnabled\(settingsKey)") - super.isAutomaticSpellingCorrectionEnabled = newValue + super.isAutomaticDataDetectionEnabled = newValue } } @@ -1355,7 +1355,7 @@ public final class InputTextView: NSTextView, NSLayoutManagerDelegate, NSTextSto } set { UserDefaults.standard.set(newValue, forKey: "AutomaticDashSubstitutionEnabled\(settingsKey)") - super.isAutomaticSpellingCorrectionEnabled = newValue + super.isAutomaticDashSubstitutionEnabled = newValue } } }