Skip to content

Commit

Permalink
linting/prettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
amenconi committed Feb 16, 2024
1 parent 433eb7e commit 619b91d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/pages/nft/pages/nft/nft.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ export class NFTPage implements OnInit, OnDestroy {
this.data.collection$.value,
this.data.nft$.value,
);
let parsedQuantity = Math.round(Number(this.nftQtySelected));
const parsedQuantity = Math.round(Number(this.nftQtySelected));

if (isNaN(parsedQuantity) || parsedQuantity <= 0) {
this.nftQtySelected = 1;
Expand All @@ -441,7 +441,7 @@ export class NFTPage implements OnInit, OnDestroy {

if (event.clipboardData) {
const pastedData = event.clipboardData.getData('text/plain');
let parsedQuantity = Math.round(Number(pastedData));
const parsedQuantity = Math.round(Number(pastedData));

const maxQuantity = this.getAvailableNftQuantity(
this.data.collection$.value,
Expand Down

0 comments on commit 619b91d

Please sign in to comment.