CASH-1757

CASH-1757 adjust styles for after pay banner
This commit is contained in:
CarlNation 2025-11-14 12:37:50 -05:00
parent 308610187f
commit e85a4e64e1
2 changed files with 6 additions and 6 deletions

View file

@ -163,6 +163,7 @@ export default {
.callout {
font-family: UrbanistSemibold, Arial, Helvetica, sans-serif;
white-space: nowrap;
}
> div:first-of-type {
@ -196,7 +197,7 @@ export default {
}
@include media-breakpoint-up(md) {
padding-left: 1rem;
max-width: 32rem;
max-width: 36rem;
}
}
}

View file

@ -6,10 +6,10 @@ import { updateOrCreateFunnelCookie } from "@/helpers/heritage-integration/cooki
import { getFunnelCookie } from "@/helpers/heritage-integration/cookie-helper";
export async function consumeReferralQuerystrings() {
var referralNumber = getQuerystringParameter(queryStrings.REFERRAL_NUMBER);
var parentAccount = getQuerystringParameter(queryStrings.PARENT_ACCOUNT);
var correlationId = getQuerystringParameter(queryStrings.CORRELATION_ID);
var referralDate = null;
let referralNumber = getQuerystringParameter(queryStrings.REFERRAL_NUMBER);
let parentAccount = getQuerystringParameter(queryStrings.PARENT_ACCOUNT);
let correlationId = getQuerystringParameter(queryStrings.CORRELATION_ID);
let referralDate = null;
// If no referral number in querystring, check if heritage funnel updated last.
// This would indicate a customer that went to heritage but did not return through the
@ -30,7 +30,6 @@ export async function consumeReferralQuerystrings() {
if (referralDate) {
store.commit(storeMutations.UPDATE_REFERRAL_DATE, referralDate);
}
// log(" --update cookie");
updateOrCreateFunnelCookie();
}
}