Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 162653194
ITEM: 202204674
Enhance your comfort level in hot weather with this West Virginia Mountaineers Sideline UV Performance Coach T-Shirt by Nike It features sweat-wicking Dri-FIT technology to keep you cool and dry whether you're staying active or spending time out in the sun Designed with mesh paneling for added breathability and a lightweight feel this West Virginia Mountaineers top is comfortable to wear all day
Features and Benefits
Standard Fit Easy and traditional
Screen print graphics
Crew neck
On-Field gear worn by the players, coaches and team staff
Interlock fabric has a lightweight feel (160gsm)
Mesh paneling on upper left front
Brand: Nike
Machine wash, tumble dry low
Dri-FIT technology wicks away moisture
Material: 100% Polyester
Move To Zero is Nike's journey toward zero carbon and zero waste to help protect the future of sport
Short sleeve
Specifications
Sleeve length: Short 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();