Skip to content

Commit 65c54be

Browse files
Merge pull request #88 from Tuditi/fix/amount-bloom-deep-link
Fix: amount bloom deep link
2 parents de94335 + 0bba0b5 commit 65c54be

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/app/components/wallet-deeplink/wallet-deeplink.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ export class WalletDeeplinkComponent {
9797
// Shimmer Network
9898
const parameters = {
9999
address: this.targetAddress,
100-
baseCoinAmount:
101-
this.tokenId && this.surplus ? Number(this.targetAmount).toFixed(0) : undefined,
100+
baseCoinAmount: Number(this.targetAmount ?? 0).toFixed(0),
102101
tokenId: this.tokenId,
103102
tokenAmount: this.tokenId ? this.tokenAmount : undefined,
104103
tag: WEN_NAME.toLowerCase(),

0 commit comments

Comments
 (0)