From 58e6a785795bae3196fd99ab7371199ff88dc358 Mon Sep 17 00:00:00 2001 From: nymkappa <1612910616@pm.me> Date: Sun, 19 Jan 2025 17:56:19 +0900 Subject: [PATCH] [accelerator] add support for card on file acceleration --- .../accelerate-checkout.component.html | 22 ++- .../accelerate-checkout.component.ts | 133 +++++++++++++++++- .../src/app/services/services-api.service.ts | 4 + frontend/src/app/shared/shared.module.ts | 3 +- 4 files changed, 153 insertions(+), 9 deletions(-) diff --git a/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.html b/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.html index 150da04da..e90a5cc21 100644 --- a/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.html +++ b/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.html @@ -389,13 +389,13 @@ } - @if (canPayWithCashapp || canPayWithApplePay || canPayWithGooglePay) { + @if (canPayWithCashapp || canPayWithApplePay || canPayWithGooglePay || canPayWithCardOnFile) {
—OR—