From e378df4158390319e88fb7076fb04e4d82028fed Mon Sep 17 00:00:00 2001 From: natsoni Date: Fri, 2 Aug 2024 18:52:07 +0200 Subject: [PATCH] Fix pizza tracker crash on unseen transaction --- frontend/src/app/components/tracker/tracker.component.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/components/tracker/tracker.component.html b/frontend/src/app/components/tracker/tracker.component.html index 3258d70d8..cc2c9fe74 100644 --- a/frontend/src/app/components/tracker/tracker.component.html +++ b/frontend/src/app/components/tracker/tracker.component.html @@ -118,7 +118,7 @@   } @else { - @if (!tx.status?.confirmed && showAccelerationSummary) { + @if (tx && !tx.status?.confirmed && showAccelerationSummary) { } -
+
@if (tx?.acceleration && !tx.status?.confirmed) {
@@ -186,7 +186,7 @@