Skip to content

Commit

Permalink
fix: alignment in deploy pkg, typo in send tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidsowardx committed Dec 21, 2022
1 parent 1b4312d commit fac44fc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
11 changes: 4 additions & 7 deletions src/components/deploy-package/DeployPackage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,11 @@
/>
{:else}
<Box transparent>
<Text size={'xxlarge'} bold>Deploy Package</Text>
</Box>
{#if $state.matches('not-connected')}
<center>
<Text size={'xxlarge'} mb="medium" bold>Deploy Package</Text>
{#if $state.matches('not-connected')}
<Text bold>Please connect your Radix Wallet to get started.</Text>
</center>
{/if}

{/if}
</Box>
{#if $state.matches( { connected: { 'deploying-package': 'idle' } } ) || $state.matches( { connected: { 'deploying-package': 'deploy' } } )}
<Box transparent>
<Text
Expand Down
2 changes: 1 addition & 1 deletion src/routes/send-tokens/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<Box transparent>
<Text inline size="xxlarge" mb="medium" bold>Send Tokens</Text>
{#if $state.matches('not-logged-in') && !$state.matches('final')}
<Text bold>Please connect your Radix wallet to get started.</Text>
<Text bold>Please connect your Radix Wallet to get started.</Text>
{/if}
{#if $state.matches('idle') || isSendingToken}
<SendTokenForm
Expand Down

0 comments on commit fac44fc

Please sign in to comment.