Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 160468260
ITEM: 202245664
Stay warm and rep your UConn Huskies 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 UConn Huskies
Features and Benefits
Officially licensed
Brushed-back fleece provides a cozy feel
Machine wash, tumble dry low
Embroidered team patch is heat sealed on left chest
Material: 52% Cotton/48% Polyester
Dropped shoulders create a relaxed fit
Heavyweight sweatshirt suitable for cold temperatures
Long sleeve
Mock neck
Brand: Antigua
Covered zipper detail
1/4-Zip
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();