Allow removing subdomain

This commit is contained in:
Tom Moor
2018-11-03 23:24:44 -07:00
parent 1be8e13828
commit 8de074b275
3 changed files with 5 additions and 5 deletions

View File

@@ -24,10 +24,7 @@ const Auth = observer(({ auth, children }: Props) => {
return <LoadingIndicator />;
}
if (
team.subdomain &&
!window.location.hostname.startsWith(team.subdomain)
) {
if (window.location.origin !== team.url) {
window.location.href = `${team.url}${window.location.pathname}`;
return <LoadingIndicator />;
}