From d1eec80afb2365b53a7c984f648abb3c345b9e34 Mon Sep 17 00:00:00 2001 From: wiz Date: Sun, 4 Aug 2024 20:45:05 -0400 Subject: [PATCH] Delete redirect to /tracker/ for cash.app --- frontend/src/app/services/state.service.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/frontend/src/app/services/state.service.ts b/frontend/src/app/services/state.service.ts index 8928245a7..927c62198 100644 --- a/frontend/src/app/services/state.service.ts +++ b/frontend/src/app/services/state.service.ts @@ -227,10 +227,6 @@ export class StateService { } }); - if (this.referrer === 'https://cash.app/' && window.innerWidth < 850 && window.location.pathname.startsWith('/tx/')) { - this.router.navigate(['/tracker/' + window.location.pathname.slice(4)]); - } - this.liveMempoolBlockTransactions$ = this.mempoolBlockUpdate$.pipe(scan((transactions: { [txid: string]: TransactionStripped }, change: MempoolBlockUpdate): { [txid: string]: TransactionStripped } => { if (isMempoolState(change)) { const txMap = {};