diff --git a/DuckDuckGo/Preferences/View/PreferencesAutofillView.swift b/DuckDuckGo/Preferences/View/PreferencesAutofillView.swift index 77fe6bec54..6cf2b84b6f 100644 --- a/DuckDuckGo/Preferences/View/PreferencesAutofillView.swift +++ b/DuckDuckGo/Preferences/View/PreferencesAutofillView.swift @@ -68,42 +68,6 @@ extension Preferences { // Autofill Content Button PreferencePaneSection { - // New section - if model.autofillSurveyEnabled { - HStack(alignment: .top, spacing: 20) { - Image(.passwordsDDG128) - .frame(width: 64, height: 48) - - VStack(alignment: .leading) { - Text(verbatim: "Help us improve!") - .bold() - Text(verbatim: "We want to make using passwords in DuckDuckGo better.") - .foregroundColor(.greyText) - .padding(.top, 1) - - HStack { - Button(action: { - model.disableAutofillSurvey() - }, label: { - Text(verbatim: "No Thanks") - }) - Button(action: { - model.launchSurvey() - }, label: { - Text(verbatim: "Take Survey") - }) - .buttonStyle(DefaultActionButtonStyle(enabled: true)) - } - .padding(.top, 12) - } - - Spacer() - } - .padding() - .roundedBorder() - .padding(.bottom, 24) - } - Button(UserText.autofillViewContentButton) { model.showAutofillPopover() }