Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 160661191
ITEM: 202245610
Stay warm and rep your Kentucky Wildcats with this Antigua Victory Quarter-Zip Sweatshirt Its heavyweight fabric is great for chilly days when you need some extra team spirit Finished with a brushed-back fleece interior and dropped shoulder design this sweatshirt is perfect for keeping comfy while cheering on the Kentucky Wildcats
Features and Benefits
Machine wash tumble dry low
Brushed-back fleece provides a cozy feel
Material: 52% Cotton/48% Polyester
Embroidered team patch is heat sealed on left chest
Mock neck
Dropped shoulders create a relaxed fit
Covered zipper detail
Heavyweight sweatshirt suitable for cold temperatures
Forward roll shoulder seam
Brand: Antigua
1/4-Zip
Officially licensed
function updateCustomerIdStorage() {
const sourceKey = 'aso_cdp_data';
const targetKey = 'm_cdp_customer_id';
let customerId = null;
try {
const storedValue = localStorage.getItem(sourceKey);
if (storedValue) {
const data = JSON.parse(storedValue);
customerId = data.cdpData?.customerId;
} else {
console.warn(`Source Key "${sourceKey}" not found in local storage.`);
}
} catch (error) {
console.error(`Error parsing JSON from source key "${sourceKey}":`, error);
}
if (customerId) {
localStorage.setItem(targetKey, customerId);
// console.log(`Successfully set "${targetKey}" to: ${customerId}`);
} else {
localStorage.removeItem(targetKey);
// console.log(`No customerId found. Removed key "${targetKey}" from local storage.`);
}
}
updateCustomerIdStorage();