diff --git a/apiserver/plane/authentication/views/app/signout.py b/apiserver/plane/authentication/views/app/signout.py index 10461f240..260a89a8d 100644 --- a/apiserver/plane/authentication/views/app/signout.py +++ b/apiserver/plane/authentication/views/app/signout.py @@ -1,6 +1,3 @@ -# Python imports -from urllib.parse import urljoin - # Django imports from django.views import View from django.contrib.auth import logout @@ -23,9 +20,10 @@ class SignOutAuthEndpoint(View): user.save() # Log the user out logout(request) - url = urljoin(base_host(request=request, is_app=True), "sign-in") - return HttpResponseRedirect(url) + return HttpResponseRedirect( + base_host(request=request, is_app=True) + ) except Exception: return HttpResponseRedirect( - base_host(request=request, is_app=True), "sign-in" + base_host(request=request, is_app=True) ) diff --git a/docker-compose-local.yml b/docker-compose-local.yml index 18d54b688..39c587d2b 100644 --- a/docker-compose-local.yml +++ b/docker-compose-local.yml @@ -97,7 +97,7 @@ services: - dev_env volumes: - ./apiserver:/code - command: ./bin/docker-entrypoint-api.sh + command: ./bin/docker-entrypoint-api-local.sh env_file: - ./apiserver/.env depends_on: diff --git a/web/store/root.store.ts b/web/store/root.store.ts index b76fc4756..4e6a74815 100644 --- a/web/store/root.store.ts +++ b/web/store/root.store.ts @@ -96,7 +96,6 @@ export class RootStore { this.dashboard = new DashboardStore(this); this.router = new RouterStore(); this.commandPalette = new CommandPaletteStore(); - this.theme = new ThemeStore(this); this.eventTracker = new EventTrackerStore(this); this.instance = new InstanceStore(); this.user = new UserStore(this);