From 4e49a4be86810a6323d8bd09786d671141207de0 Mon Sep 17 00:00:00 2001 From: Taksh Date: Mon, 27 Jul 2026 10:07:52 +0300 Subject: [PATCH] fix: enable autocorrect in the message composer Leave autocorrection on for chat text so iOS can fix typos while typing. Nickname and geohash fields stay disabled. --- bitchat/Views/ContentComposerView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bitchat/Views/ContentComposerView.swift b/bitchat/Views/ContentComposerView.swift index 64021d52..a17b5a7a 100644 --- a/bitchat/Views/ContentComposerView.swift +++ b/bitchat/Views/ContentComposerView.swift @@ -76,7 +76,8 @@ struct ContentComposerView: View { .bitchatFont(size: 15) .foregroundColor(palette.primary) .focused(isTextFieldFocused) - .autocorrectionDisabled(true) + // Autocorrect left enabled for chat typing (#969). Nicknames + // and geohashes keep `.autocorrectionDisabled(true)` elsewhere. #if os(iOS) .textInputAutocapitalization(.sentences) #endif