Skip to content

Commit

Permalink
fix(payment): Fix equality signs.
Browse files Browse the repository at this point in the history
  • Loading branch information
gtandersen committed Nov 18, 2024
1 parent 86ed8e0 commit 3aacd30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/account-app/account-receipt.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<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 @@ -8,7 +8,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 Expand Up @@ -69,7 +69,7 @@ <h2>
</p>
</table>

<div *ngIf="receipt.status == 1 && receipt.method === 'coinbase'">
<div *ngIf="receipt.status === 1 && receipt.method === 'coinbase'">
<h2> Cryptocurrency transfer </h2>

<p>
Expand Down Expand Up @@ -146,7 +146,7 @@ <h4>

</div>

<div *ngIf="receipt.status == 1 && receipt.method === 'offline'">
<div *ngIf="receipt.status === 1 && receipt.method === 'offline'">

<h2> SWIFT transfer </h2>

Expand Down

0 comments on commit 3aacd30

Please sign in to comment.