diff --git a/app/src/lib/components/TransferFrom/components/Cube/faces/Assets.svelte b/app/src/lib/components/TransferFrom/components/Cube/faces/Assets.svelte index c4c10ca611..d5a8a1be72 100644 --- a/app/src/lib/components/TransferFrom/components/Cube/faces/Assets.svelte +++ b/app/src/lib/components/TransferFrom/components/Cube/faces/Assets.svelte @@ -31,28 +31,32 @@ -
-
- {#each $context.balances as asset} - {@const supportedAsset = getSupportedAsset($context.sourceChain, asset.address)} - {#if $showUnsupported || supportedAsset} -
- -
- {/if} - {/each} -
+
+ {#if $context.balances.length} +
+ {#each $context.balances as asset} + {@const supportedAsset = getSupportedAsset($context.sourceChain, asset.address)} + {#if $showUnsupported || supportedAsset} +
+ +
+ {/if} + {/each} +
+ {:else} +

No spendable balances

+ {/if}
\ No newline at end of file +
+

Transfer

+
+ + +
+
\ No newline at end of file