[hotfix] remove hardcode link

This commit is contained in:
ilya-bkv 2023-02-11 14:33:32 +03:00
parent c92244c63a
commit 0f42c8bb95

View File

@ -77,7 +77,7 @@ export const ProfileSettingsPage = () => {
})
}
const [hostname, setHostname] = createSignal('new.discours.io')
const [hostname, setHostname] = createSignal<string | null>(null)
onMount(() => setHostname(window?.location.host))
return (