Delete redirect to /tracker/ for cash.app

This commit is contained in:
wiz 2024-08-04 20:45:05 -04:00
parent 05c6709926
commit d1eec80afb
No known key found for this signature in database
GPG key ID: A394E332255A6173

View file

@ -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 = {};