diff options
Diffstat (limited to 'ui/lib/components/ChannelList.svelte')
| -rw-r--r-- | ui/lib/components/ChannelList.svelte | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ui/lib/components/ChannelList.svelte b/ui/lib/components/ChannelList.svelte index f7376c1..9d1227e 100644 --- a/ui/lib/components/ChannelList.svelte +++ b/ui/lib/components/ChannelList.svelte @@ -1,10 +1,7 @@ <script> - import { channelsList } from '$lib/store'; import Channel from './Channel.svelte'; - export let active = null; - - $: channels = $channelsList.channels; + let { channels, active } = $props(); </script> <nav class="list-nav"> |
