Skip to content

Commit

Permalink
fix(receipt): Ensure receipt displays all sections
Browse files Browse the repository at this point in the history
  • Loading branch information
castaway committed Nov 21, 2024
1 parent 28e8f91 commit d7b8a2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/account-app/account-receipt.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div *ngIf="ready | async; else loading">
<div *ngIf="receipt.status === '0'">
<div *ngIf="receipt.status === 0">
<h1>Payment receipt</h1>
<p>
Thank you for your purchase. The details for your transaction are shown below.
Expand All @@ -9,7 +9,7 @@ <h1>Payment receipt</h1>
</p>
</div>

<div *ngIf="receipt.status === '1'">
<div *ngIf="receipt.status === 1">
<h1>Pending payment</h1>
<p>
The details for your pending transaction are shown below.
Expand Down

0 comments on commit d7b8a2c

Please sign in to comment.