Files
flotilla/src/app/components/ChannelName.svelte
T
2025-06-09 13:48:45 -07:00

8 lines
179 B
Svelte

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