Skip to content

Commit

Permalink
feat(site): improve button labels
Browse files Browse the repository at this point in the history
  • Loading branch information
cor committed Oct 25, 2023
1 parent 9b56dd8 commit 13f238d
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 @@ -41,11 +41,11 @@
{:else}
{#if $sendingUnoToUnion === 'sending'}
<div class="flex gap-4 h-[48px] items-center">
<div>Sending UNO to Union</div>
<div>Sending 0.001 UNO to Union</div>
<PulseSpinner/>
</div>
{:else if $sendingUnoToUnion === 'start'}
<DemoButton on:click={clickHandler}>Send UNO to Union</DemoButton>
<DemoButton on:click={clickHandler}>Send 0.001 UNO to Union</DemoButton>
{:else if $sendingUnoToUnion === 'done'}
<div class="flex gap-4 h-[48px] items-center">
<div>✅ Received UNO on Union, new balance is <span class="text-accent">{toFixedUno(BigInt($unionUnoBalance.amount))}</span> UNO</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<TerminalContainer>
{#if $sendingUnoToUnion === 'sending'}
<div class="flex gap-4 h-[48px] items-center">
<div>Sending UNO to Union</div>
<div>Sending 0.001 UNO to Union</div>
<PulseSpinner/>
</div>
{:else if $sendingUnoToUnion === 'start'}
Expand Down

0 comments on commit 13f238d

Please sign in to comment.