From 212d58f91715347f798e2798edb8174b96fa6680 Mon Sep 17 00:00:00 2001 From: wiz Date: Sun, 4 Aug 2024 20:52:49 -0400 Subject: [PATCH] Change accelerate checkout redirect from /tracker/ to /tx/ --- .../accelerate-checkout/accelerate-checkout.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.ts b/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.ts index 2695aaef6..6b1eadf7d 100644 --- a/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.ts +++ b/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.ts @@ -664,11 +664,11 @@ export class AccelerateCheckout implements OnInit, OnDestroy { amount: costUSD.toFixed(2), label: 'Total', pending: true, - productUrl: `${redirectHostname}/tracker/${this.tx.txid}`, + productUrl: `${redirectHostname}/tx/${this.tx.txid}`, } }); this.cashAppPay = await this.payments.cashAppPay(paymentRequest, { - redirectURL: `${redirectHostname}/tracker/${this.tx.txid}`, + redirectURL: `${redirectHostname}/tx/${this.tx.txid}`, referenceId: `accelerator-${this.tx.txid.substring(0, 15)}-${Math.round(new Date().getTime() / 1000)}` });