CSR-622 Edit comment

This commit is contained in:
Katie 2022-05-27 14:40:04 -04:00
parent 8700ca9e3e
commit e849a8a58e

View file

@ -11,7 +11,7 @@ import baseMixin from "@/mixins/base-mixin";
export async function loadOrderIfPresent() {
const funnelCookie = getFunnelCookie();
// Do nothing if there is no cookie or no correlation id.
// Do nothing if there is no cookie, correlation id, or referral number.
if (funnelCookie == null || funnelCookie.ReferralCorrelationId == null || !funnelCookie.ReferralNumber) {
return null;
}