From f39e82a3abc176ccdb350f7b5cdb7f1fa5b5f5b6 Mon Sep 17 00:00:00 2001 From: Jeremy-Z Date: Mon, 11 May 2026 11:05:09 -0400 Subject: [PATCH] Fixing some formatting issues. --- public/static/error/index.html | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/public/static/error/index.html b/public/static/error/index.html index 509b04dd..82775be1 100644 --- a/public/static/error/index.html +++ b/public/static/error/index.html @@ -52,6 +52,7 @@ body { .diagnostic-info { color: #db0020; font-family: 'UrbanistSemiBold', Roboto, Arial, Helvetica, sans-serif; + word-wrap: break-word; } Error - Safelite @@ -70,15 +71,6 @@ body { We encountered an error while processing your appointment. You can return to our site and try scheduling again at a later time.

-

@@ -145,7 +137,7 @@ body { return match; } - function getExperimentSettingsFromVuex(storeData) { + function getExperimentSettingsFromStore(storeData) { const experiments = storeData?.applicationUser?.experiments; if(experiments) { @@ -224,7 +216,7 @@ body { // =============== Collect header data: headerInfo = []; - headerInfo.push({ name: 'X-Experiment-Data', value: JSON.stringify(getExperimentSettingsFromVuex(mainStore)) }); + headerInfo.push({ name: 'X-Experiment-Data', value: JSON.stringify(getExperimentSettingsFromStore(mainStore)) }); headerInfo.push({ name: 'X-Application-Name', value: 'ISS' }); const sessionKeyCookieName = `ISSSessionKey-${environmentData?.name}`; @@ -291,12 +283,12 @@ body { const mainStore = existingStoreDataJSON ? JSON.parse(existingStoreDataJSON) : null; const bailoutData = mainStore.applicationUser.pageData['bailout-page']; - console.log(`================ VUEX DATA`); + console.log(`================ STORE DATA`); console.log(mainStore); - - /* console.log(`================ PRIOR BAILOUT DATA`); - console.log(existingBailoutInfo); + console.log(bailoutData); + + /* console.log(`================ PRIOR HEADER DATA`); console.log(existingHeaderInfo); */