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) => { (error) => {
console.error(error); console.error(error);
console.log("Error calling: " + endpoint + " payload: " + JSON.stringify(payload));
if (logApiCall) { if (logApiCall) {
analyticsMixIn.methods.pushEventToGA( analyticsMixIn.methods.pushEventToGA(

View file

@ -444,7 +444,7 @@ async function DisplayPageError() {
baseMixin.methods.dispatchStoreAction(storeActions.RESET_SAVE_SESSION_PROMISE); baseMixin.methods.dispatchStoreAction(storeActions.RESET_SAVE_SESSION_PROMISE);
router.push({ router.push({
path: "/", path: "/",
query: { fmgPage: 'bailout' }, query: { fmgPage: "bailout" },
}); });
} }