Bump version

This commit is contained in:
Jon Staab
2024-12-16 18:59:16 -08:00
parent b8e23c47d4
commit 055d539b88
4 changed files with 11 additions and 13 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
import Icon from "@lib/components/Icon.svelte"
import SecondaryNavItem from "@lib/components/SecondaryNavItem.svelte"
import ChannelName from "@app/components/ChannelName.svelte"
import {makeSpacePath} from "@app/routes"
import {makeRoomPath} from "@app/routes"
import {deriveChannel, channelIsLocked} from "@app/state"
import {notifications} from "@app/notifications"
@@ -10,7 +10,7 @@
export let room
export let notify = false
const path = makeSpacePath(url, room)
const path = makeRoomPath(url, room)
const channel = deriveChannel(url, room)
</script>