From 6fb19d89ef825d97e3f97d7f6d35454e8d6fce40 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Mon, 18 Dec 2023 13:03:38 +0200 Subject: [PATCH] Fix PayPal link --- lib/ui/company_gateway/edit/company_gateway_edit_vm.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/company_gateway/edit/company_gateway_edit_vm.dart b/lib/ui/company_gateway/edit/company_gateway_edit_vm.dart index f971ee0e9..3c28fcb6e 100644 --- a/lib/ui/company_gateway/edit/company_gateway_edit_vm.dart +++ b/lib/ui/company_gateway/edit/company_gateway_edit_vm.dart @@ -155,7 +155,7 @@ class CompanyGatewayEditVM { break; case kGatewayPayPalPlatform: launchUrl(Uri.parse( - '${cleanApiUrl(credentials.url)}/paypal/signup/${response['hash']}')); + '${cleanApiUrl(credentials.url)}/paypal?hash=${response['hash']}')); break; } }).catchError((dynamic error) {