From 597610ed4c36c29b400f0e5ef01009906c84a17e Mon Sep 17 00:00:00 2001 From: Lars Kusch Date: Fri, 16 Dec 2022 16:55:42 +0100 Subject: [PATCH] Minor fixes --- app/PaymentDrivers/Stripe/BACS.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/PaymentDrivers/Stripe/BACS.php b/app/PaymentDrivers/Stripe/BACS.php index dd6ba037518c..b7d908697447 100644 --- a/app/PaymentDrivers/Stripe/BACS.php +++ b/app/PaymentDrivers/Stripe/BACS.php @@ -49,7 +49,7 @@ class BACS } private function buildReturnUrl(): string { - return route('client.payments.confirm', [ + return route('client.payment_methods.confirm', [ 'method' => GatewayType::BACS, 'session_id' => "{CHECKOUT_SESSION_ID}", ]);