diff --git a/front/volume/src/components/Channels.svelte b/front/volume/src/components/Channels.svelte index 454785a..885e82a 100644 --- a/front/volume/src/components/Channels.svelte +++ b/front/volume/src/components/Channels.svelte @@ -44,8 +44,7 @@ const channel = channels.find((c) => c.id === id); if (channel) { joinChannel(id); - console.log("joined a channel") - onSelectChannel(channel); + onSelectChannel(channel); } else { alert("Did not find channel"); }