From ffd5973226278b2f239dd9e59156dc1a46c2dcaa Mon Sep 17 00:00:00 2001 From: Josh Dassinger Date: Fri, 5 Apr 2024 10:11:49 -0500 Subject: [PATCH] SSR-1049 Update page variable name --- src/store/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/index.js b/src/store/index.js index 62bcfb4a..c3e1a55a 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -2246,13 +2246,13 @@ export const useMainStore = defineStore({ setBailout(bailoutData) { const params = new URL(document.location.toString()).searchParams; - const page = params.get('issPage'); + const currentPage = params.get('issPage'); this.updatePageData({ page: issPageValues.BAILOUT_PAGE, data: { url: window.location.href, - page: page || 'Unknown Page', + page: currentPage || 'Unknown Page', bailoutCode: bailoutData.code, errorMessage: bailoutData.message, submit: false