From 46ae0395872c6a8e0e59cd36eae3d6b8b26974b5 Mon Sep 17 00:00:00 2001 From: jack Date: Mon, 12 Jan 2026 16:24:51 -1000 Subject: [PATCH] Remove security warning from AppInfo view Co-Authored-By: Claude Opus 4.5 --- bitchat/Views/AppInfoView.swift | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/bitchat/Views/AppInfoView.swift b/bitchat/Views/AppInfoView.swift index 6bb42f55..68472e81 100644 --- a/bitchat/Views/AppInfoView.swift +++ b/bitchat/Views/AppInfoView.swift @@ -86,10 +86,6 @@ struct AppInfoView: View { ] } - enum Warning { - static let title: LocalizedStringKey = "app_info.warning.title" - static let message: LocalizedStringKey = "app_info.warning.message" - } } var body: some View { @@ -192,24 +188,6 @@ struct AppInfoView: View { FeatureRow(info: Strings.Privacy.panic) } - - // Warning - VStack(alignment: .leading, spacing: 6) { - SectionHeader(Strings.Warning.title) - .foregroundColor(Color.red) - - Text(Strings.Warning.message) - .font(.bitchatSystem(size: 14, design: .monospaced)) - .foregroundColor(Color.red) - .fixedSize(horizontal: false, vertical: true) - } - .padding(.top, 6) - .padding(.bottom, 16) - .padding(.horizontal) - .background(Color.red.opacity(0.1)) - .cornerRadius(8) - - .padding(.top) } .padding() }