Remove PayPal order complete sheet.

main
Alex Hart 2022-12-12 16:05:54 -04:00
rodzic 599caee229
commit 303e5c7996
1 zmienionych plików z 2 dodań i 6 usunięć

Wyświetl plik

@ -112,15 +112,11 @@ class PayPalPaymentInProgressFragment : DialogFragment(R.layout.donation_in_prog
}
private fun oneTimeConfirmationPipeline(createPaymentIntentResponse: PayPalCreatePaymentIntentResponse): Single<PayPalConfirmationResult> {
return routeToOneTimeConfirmation(createPaymentIntentResponse).flatMap {
displayCompleteOrderSheet(it)
}
return routeToOneTimeConfirmation(createPaymentIntentResponse)
}
private fun monthlyConfirmationPipeline(createPaymentIntentResponse: PayPalCreatePaymentMethodResponse): Single<PayPalPaymentMethodId> {
return routeToMonthlyConfirmation(createPaymentIntentResponse).flatMap {
displayCompleteOrderSheet(it)
}
return routeToMonthlyConfirmation(createPaymentIntentResponse)
}
private fun routeToOneTimeConfirmation(createPaymentIntentResponse: PayPalCreatePaymentIntentResponse): Single<PayPalConfirmationResult> {