Added code to remove the loading animation if the client tag validation fails.

This commit is contained in:
Jeremy Zimmerman 2024-10-30 10:45:54 -04:00
parent 17512095c6
commit 8c1e8ba182

View file

@ -12,6 +12,7 @@ import issPageValues from '@/router/router-constants/issPage-values';
import { validateISSClientTag, validateISSClientSignature } from '@/helpers/clientauth-helper';
import { getISSCookie, updateOrCreateISSCookie } from '@/helpers/cookie-helper.js';
import { useMainStore } from '@/store';
import showIssLoadingModal from '@/helpers/loading-modal-helper';
import applicationConfig from '@/constants/application-config';
export default {
@ -80,6 +81,8 @@ export default {
// Forced full location redirect here. We do not want the entry page as part of the router/flow/path history.
window.location = `/?issPage=${issPageValues.WELCOME_PAGE}`;
}
} else {
showIssLoadingModal(false);
}
},
methods: