Skip to content

Commit

Permalink
Show not logged in message on funding account
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroncox committed Jan 7, 2025
1 parent 36cbbb2 commit 2d70806
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/routes/[network]/(account)/fund/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,13 @@
<DD>{env.PUBLIC_EOS_COINBASE_ASSET}</DD>
</DLRow>
<DLRow title={m.send_receiving_account()}>
<DD>{context.account?.name}</DD>
<DD>
{#if context.account}
{context.account?.name}
{:else}
{m.common_not_logged_in()}
{/if}
</DD>
</DLRow>
</DL>
</div>
Expand Down

0 comments on commit 2d70806

Please sign in to comment.