From 7ddd02df1b52128905201181ea35c2ce14a06158 Mon Sep 17 00:00:00 2001 From: "Evgeny @ SimpleX Chat" <259188159+evgeny-simplex@users.noreply.github.com> Date: Wed, 1 Jul 2026 05:43:26 +0000 Subject: [PATCH] move name verification to more privacy --- apps/ios/Shared/Views/UserSettings/PrivacySettings.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/ios/Shared/Views/UserSettings/PrivacySettings.swift b/apps/ios/Shared/Views/UserSettings/PrivacySettings.swift index 529833fc65..54cc085072 100644 --- a/apps/ios/Shared/Views/UserSettings/PrivacySettings.swift +++ b/apps/ios/Shared/Views/UserSettings/PrivacySettings.swift @@ -82,9 +82,6 @@ struct PrivacySettings: View { settingsRow("link", color: theme.colors.secondary) { Toggle("Remove link tracking", isOn: $privacySanitizeLinks) } - settingsRow("checkmark.shield", color: theme.colors.secondary) { - Toggle("Verify SimpleX names", isOn: $verifySimplexNames) - } } header: { Text("Chats") .foregroundColor(theme.colors.secondary) @@ -197,6 +194,9 @@ struct PrivacySettings: View { m.draftChatId = nil } } + settingsRow("checkmark.shield", color: theme.colors.secondary) { + Toggle("Verify SimpleX names", isOn: $verifySimplexNames) + } } header: { Text("Chats") .foregroundColor(theme.colors.secondary)