Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 163675993
ITEM: 203187392
Stay comfortable and stylish while repping your number one team in this Wisconsin Badgers Tri-Blend Breezy Long Sleeve Hoodie T-Shirt from Under Armour The super-soft knit fabric is fast-drying and provides lightweight comfortable performance Side vents at the bottom hem enhance mobility whether at the gym out for a jog or just lounging around the home while thumbholes prevent the sleeves from riding up The printed team graphics across the chest make this tee a visible sign of your fandom anywhere you go
Features and Benefits
Super-soft knit fabric that's fast-drying for lightweight comfortable performance
Hooded
Long sleeve
Relaxed Fit: Loose and roomy across the chest, shoulders and body
Drop shoulders create a relaxed, laid-back fit
UA logo on bottom left hem
Imported
Brand: Under Armour
Printed team graphics across the chest
Machine wash, tumble dry low
Officially licensed
Moisture-wicking technology to keep you cool and dry
Specifications
Sleeve length: Long Sleeve
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();