Skip to content

Commit

Permalink
Merge pull request runbox#1630 from shadow-dot-cat/castaway/account_r…
Browse files Browse the repository at this point in the history
…eceipt

fix(receipt): Ensure receipt displays all sections
  • Loading branch information
castaway authored Nov 21, 2024
2 parents 0112081 + d7b8a2c commit 67787c8
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 67787c8

Please sign in to comment.