From 91c4beea0f862abffc071ae778151a089d56581f Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Bellet Date: Thu, 22 Jul 2021 15:05:03 +0200 Subject: [PATCH] No need to add flash error for error as we render error on each input with error --- app/controllers/split_checkout_controller.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/app/controllers/split_checkout_controller.rb b/app/controllers/split_checkout_controller.rb index 1134fcced7..48018ed179 100644 --- a/app/controllers/split_checkout_controller.rb +++ b/app/controllers/split_checkout_controller.rb @@ -246,7 +246,6 @@ class SplitCheckoutController < ::BaseController def checkout_failed(error = RuntimeError.new(order_error)) Bugsnag.notify(error) - flash[:error] = order_error if flash.blank? Checkout::PostCheckoutActions.new(@order).failure end