From 5fe254f10ed642b49c2a788406057b7292dcc1b5 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Fri, 11 Apr 2025 14:07:35 -0400 Subject: [PATCH] Remove index.html redirects --- src/apps/wizard/controllers/finish/index.js | 2 +- src/controllers/session/resetPassword/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/wizard/controllers/finish/index.js b/src/apps/wizard/controllers/finish/index.js index 418792978..4408da2dd 100644 --- a/src/apps/wizard/controllers/finish/index.js +++ b/src/apps/wizard/controllers/finish/index.js @@ -9,7 +9,7 @@ function onFinish() { type: 'POST' }).then(function () { loading.hide(); - window.location.href = 'index.html'; + window.location.href = ''; }); } diff --git a/src/controllers/session/resetPassword/index.js b/src/controllers/session/resetPassword/index.js index 6cbaf5935..5f553dc25 100644 --- a/src/controllers/session/resetPassword/index.js +++ b/src/controllers/session/resetPassword/index.js @@ -11,7 +11,7 @@ function processForgotPasswordResult(result) { message: msg, title: globalize.translate('HeaderPasswordReset'), callback: function () { - window.location.href = 'index.html'; + window.location.href = ''; } }); return;