Merge pull request #2242 from Safelite/feature/CASH-145

CASH-145
This commit is contained in:
chloeherdsafelite 2025-01-22 15:58:13 -05:00 committed by GitHub
commit bbfe654227
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -429,7 +429,8 @@ export default {
// prettier-ignore
{
const log = getQuerystringParameter(queryStrings.LOG);
if (eval(log) || !preReqResult) {
const logAsBool = (log?.toLowerCase() === "true");
if (logAsBool || !preReqResult) {
console.log("------------- payment-method.vue pagePrereqs start -----------------");
console.log(new Date() + " serviceLocationReqs::isMobile: " + isMobile);
console.log(new Date() + " serviceLocationReqs::mobileReqs: " + mobileReqs);