diff --git a/changes/issue-7210-logout-of-sandbox b/changes/issue-7210-logout-of-sandbox new file mode 100644 index 0000000000..754681d5ce --- /dev/null +++ b/changes/issue-7210-logout-of-sandbox @@ -0,0 +1 @@ +* Signout signs out of Sandbox mode diff --git a/frontend/pages/LogoutPage/LogoutPage.tsx b/frontend/pages/LogoutPage/LogoutPage.tsx index afb7e77d85..d3ac154622 100644 --- a/frontend/pages/LogoutPage/LogoutPage.tsx +++ b/frontend/pages/LogoutPage/LogoutPage.tsx @@ -21,7 +21,7 @@ const LogoutPage = ({ router }: ILogoutPageProps) => { clearToken(); setTimeout(() => { window.location.href = isSandboxMode - ? "https://www.fleetdm.com" + ? "https://www.fleetdm.com/logout" : "/"; }, 500); } catch (response) {