From b4879ca2a305bac1436918bd50ddd69747a7a45d Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Sat, 31 Dec 2022 13:38:55 +0000 Subject: [PATCH] ios: fix user chat preferences view --- apps/ios/Shared/Views/UserSettings/PreferencesView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ios/Shared/Views/UserSettings/PreferencesView.swift b/apps/ios/Shared/Views/UserSettings/PreferencesView.swift index dc4f27e860..dc6da64ebd 100644 --- a/apps/ios/Shared/Views/UserSettings/PreferencesView.swift +++ b/apps/ios/Shared/Views/UserSettings/PreferencesView.swift @@ -60,7 +60,7 @@ struct PreferencesView: View { } private func featureFooter(_ feature: ChatFeature, _ allowFeature: Binding) -> some View { - Text(ChatFeature.timedMessages.allowDescription(allowFeature.wrappedValue)) + Text(feature.allowDescription(allowFeature.wrappedValue)) .frame(height: 36, alignment: .topLeading) }