Rename channel to room

This commit is contained in:
Jon Staab
2025-10-30 15:36:14 -07:00
parent dbaa0f5d49
commit a324dad2ba
36 changed files with 148 additions and 148 deletions
+3 -3
View File
@@ -24,11 +24,11 @@
type Props = {
url?: string
channel?: string
room?: string
hideSpaceField?: boolean
}
const {url = "", channel = "push", hideSpaceField = false}: Props = $props()
const {url = "", room = "push", hideSpaceField = false}: Props = $props()
const dmStatus = $derived($dmAlert ? deriveAlertStatus(getAddress($dmAlert.event)) : undefined)
@@ -46,7 +46,7 @@
}),
)
const startAlert = () => pushModal(AlertAdd, {url, channel, hideSpaceField})
const startAlert = () => pushModal(AlertAdd, {url, room, hideSpaceField})
const uncheckDmAlert = async (message: string) => {
await sleep(100)