diff --git a/app/views/payments/_payment.html.haml b/app/views/payments/_payment.html.haml
index 52b7063c..56af80f7 100644
--- a/app/views/payments/_payment.html.haml
+++ b/app/views/payments/_payment.html.haml
@@ -21,12 +21,7 @@
= form_tag conference_payments_path do
%script.stripe-button{ src: "https://checkout.stripe.com/checkout.js",
- data: { amount: @total_amount_to_pay.cents,
- label: "Pay #{humanized_money_with_symbol @total_amount_to_pay}",
- email: current_user.email,
- currency: @total_amount_to_pay.currency,
- name: ENV['OSEM_NAME'] || 'OSEM',
- description: "book your tickets",
- key: Rails.application.secrets.stripe_publishable_key,
- locale: "auto"}}
+ data: { amount: @total_amount_to_pay.cents, label: "Pay #{humanized_money_with_symbol @total_amount_to_pay}",
+ email: current_user.email, currency: @total_amount_to_pay.currency, name: ENV['OSEM_NAME'] || 'OSEM',
+ description: "book your tickets", key: Rails.application.secrets.stripe_publishable_key, locale: "auto"}}
= link_to 'Edit Purchase', conference_tickets_path(@conference.short_title), class: 'btn btn-default'