From d60b3b73a79302d6b7b091a23ab6be110a004f1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20L=C3=B3pez=20Dato?= Date: Thu, 12 Sep 2024 09:37:45 -0300 Subject: [PATCH] fix: 404 when last organisation doesn't exist (#4624) --- frontend/web/components/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/web/components/App.js b/frontend/web/components/App.js index 48242f0bf175..291b3ec24157 100644 --- a/frontend/web/components/App.js +++ b/frontend/web/components/App.js @@ -219,7 +219,7 @@ const App = class extends Component { id: lastEnv.orgId, }) if (!lastOrg) { - this.context.router.history.replace('/select-organistion') + this.context.router.history.replace('/organisations') return }