Skip to content

Commit

Permalink
feat(site): show how much UNO will be sent
Browse files Browse the repository at this point in the history
  • Loading branch information
cor committed Oct 24, 2023
1 parent 466a45f commit f8af390
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
{:else}
{#if $sendingUnoToEthereum === 'sending'}
<div class="flex gap-4 h-[48px] items-center">
<div>Sending UNO to Ethereum</div>
<div>Sending 0.001 UNO to Ethereum</div>
<PulseSpinner/>
</div>
{:else if $sendingUnoToEthereum === 'start'}
<DemoButton on:click={clickHandler}>Send UNO to Ethereum</DemoButton>
<DemoButton on:click={clickHandler}>Send 0.001 UNO to Ethereum</DemoButton>
{:else if $sendingUnoToEthereum === 'done'}
<div class="flex gap-4 h-[48px] items-center">
<div>✅ Received UNO on Sepolia, new balance is <span class="text-accent">{toFixedUno($ethereumUnoBalance)}</span> UNO</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<TerminalContainer>
{#if $sendingUnoToEthereum === 'sending'}
<div class="flex gap-4 h-[48px] items-center">
<div>Sending UNO to Ethereum</div>
<div>Sending 0.001 UNO to Ethereum</div>
<PulseSpinner/>
</div>
{:else if $sendingUnoToEthereum === 'start'}
Expand Down

0 comments on commit f8af390

Please sign in to comment.