diff --git a/src/App.svelte b/src/App.svelte index 782c0bf..304f475 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -15,23 +15,29 @@
- {#await entriesPromise} - Loading radio please wait - {:then entries} - - {:catch error} - Oops, something went wrong : {error} - {/await} + {#if $entries} + {#await $entries} + Loading radio please wait + {:then entries} + + {:catch error} + Oops, something went wrong : {error} + {/await} + {:else} + Your queue + {/if}
- {domain} - {@html hashtags.map(hashtag => `#${hashtag}`)} + {$domain} - {@html $hashtags.map(hashtag => `#${hashtag}`)} + +
@@ -39,13 +45,9 @@ diff --git a/src/YoutubeViewer.svelte b/src/YoutubeViewer.svelte index 25787ab..cb47ddb 100644 --- a/src/YoutubeViewer.svelte +++ b/src/YoutubeViewer.svelte @@ -1,5 +1,7 @@
+ +