Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Bunn committed Jan 15, 2025
1 parent 182f740 commit ec6a4ba
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions DuckDuckGo/AIChatDebugView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,18 @@ private struct AIChatDebugHostnameEntryView: View {
.autocorrectionDisabled(true)
.textInputAutocapitalization(.never)
}

Button(action: {
Button {
viewModel.enteredHostname = policyHostname
presentationMode.wrappedValue.dismiss()
}) {
} label: {
Text("Confirm")
}

Button(action: {
Button {
viewModel.resetHostname()
policyHostname = ""
presentationMode.wrappedValue.dismiss()
}) {
} label: {
Text("Reset")
}
}
Expand Down

0 comments on commit ec6a4ba

Please sign in to comment.