This commit is contained in:
CarlNation 2024-02-26 09:40:30 -05:00
parent d9b5902ea4
commit e6b2a95f14
3 changed files with 3 additions and 4 deletions

View file

@ -51,7 +51,6 @@ export default {
},
(error) => {
console.error(error);
console.log("Error calling: " + endpoint + " payload: " + JSON.stringify(payload));
if (logApiCall) {
analyticsMixIn.methods.pushEventToGA(

View file

@ -76,4 +76,4 @@ export default {
loadingModal,
},
};
</script>
</script>

View file

@ -39,7 +39,7 @@ const routes = [
path: "/bailout",
name: "bailout",
component: bailout,
},
},
{
path: "/",
name: "root",
@ -444,7 +444,7 @@ async function DisplayPageError() {
baseMixin.methods.dispatchStoreAction(storeActions.RESET_SAVE_SESSION_PROMISE);
router.push({
path: "/",
query: { fmgPage: 'bailout' },
query: { fmgPage: "bailout" },
});
}