Skip to content

Commit

Permalink
Merge pull request #746 from secretkeylabs/release/v0.44.3
Browse files Browse the repository at this point in the history
release: v0.44.3 to main
  • Loading branch information
DuskaT021 authored Nov 4, 2024
2 parents df0061e + 186d16d commit e8f2315
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "xverse-web-extension",
"description": "A Bitcoin wallet for Web3",
"version": "0.44.2",
"version": "0.44.3",
"private": true,
"engines": {
"node": "^18.18.2"
Expand Down
4 changes: 1 addition & 3 deletions src/app/screens/home/balanceCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,7 @@ function BalanceCard(props: BalanceCardProps) {
const { data: runesCoinList } = useVisibleRuneFungibleTokens();

const balance = calculateTotalBalance({
stxBalance: BigNumber(stxData?.balance ?? 0)
.plus(stxData?.locked ?? 0)
.toString(),
stxBalance: BigNumber(stxData?.balance ?? 0).toString(),
btcBalance: (btcBalance ?? 0).toString(),
sipCoinsList: sip10CoinsList,
brcCoinsList: brc20CoinsList,
Expand Down

0 comments on commit e8f2315

Please sign in to comment.