diff --git a/damus/Views/EventActionBar.swift b/damus/Views/EventActionBar.swift index 4bcfe8e..3e5c76a 100644 --- a/damus/Views/EventActionBar.swift +++ b/damus/Views/EventActionBar.swift @@ -88,12 +88,12 @@ struct EventActionBar: View { } .padding(.top, 1) .alert("Boost", isPresented: $confirm_boost) { - Button("Boost") { - send_boost() - } Button("Cancel") { confirm_boost = false } + Button("Boost") { + send_boost() + } } message: { Text("Are you sure you want to boost this post?") }