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)