Skip to content

Commit

Permalink
remove some unusueful values
Browse files Browse the repository at this point in the history
  • Loading branch information
lisandro-iraguen committed Feb 5, 2024
1 parent d97dc83 commit 1db7f65
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions Client/Pages/Home.razor
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ else


<RadzenStack Orientation="Orientation.Vertical" Gap="3px" JustifyContent="JustifyContent.Left" AlignItems="AlignItems.Center" Wrap="FlexWrap.NoWrap">
<h4>Balance: @walletState.Value.Wallet.CoinCurrency @walletState.Value.Wallet.BalanceAda </h4>
@if (cryptoState.Value.IsLoading)
{
<RadzenStack Orientation="Orientation.Vertical" Gap="3px" JustifyContent="JustifyContent.Normal" AlignItems="AlignItems.Center" Wrap="FlexWrap.NoWrap">
Expand All @@ -50,7 +49,7 @@ else
{
<h1>$ARS @(cryptoState.Value.Crypto.TotalBid * walletState.Value.Wallet.BalanceAda2) </h1>
<h4>BinanceP2P</h4>
<h4>1 ada : @cryptoState.Value.Crypto.TotalBid Dolares</h4>
<h4>1 ada : @cryptoState.Value.Crypto.TotalBid Dolares</h4>
}


Expand Down Expand Up @@ -81,13 +80,8 @@ else
<h4>Network Fee $ARS: @(cryptoState.Value.Crypto.TotalBid * transactionFeeState.Value.Fee) </h4>
}

<RadzenText TextStyle="TextStyle.Subtitle2" TagName="TagName.H3">
@walletState.Value.Wallet.CoinCurrency: @(valueToTransfer / cryptoState.Value.Crypto.TotalBid)
</RadzenText>

<RadzenButton Click=@(args => SignAndSubmitTransaction()) Text="enviar" ButtonStyle="ButtonStyle.Primary" Disabled="CantSendStransaction()" />


</RadzenStack>
@if (transactionState.Value.IsSigningTransaction)
{
Expand Down

0 comments on commit 1db7f65

Please sign in to comment.