Files
flotilla/src/app/components/ChannelName.svelte
T
2025-02-03 17:21:46 -08:00

12 lines
237 B
Svelte

<script lang="ts">
import {GENERAL, channelsById, makeChannelId} from "@app/state"
const {url, room} = $props()
</script>
{#if room === GENERAL}
general
{:else}
{$channelsById.get(makeChannelId(url, room))?.name || room}
{/if}