Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 160576990
ITEM: 202684476
Top off your Chicago Cubs game day look with this Performance Pro Adjustable Hat from Nike The structured fit and slightly curved bill offer a classic look while the six-panel construction with breathable eyelets ensures optimal ventilation during those afternoon games in the stands Built with Nike's Dri-FIT technology that wicks away moisture to keep you cool dry and comfortable you'll be ready all gamedays to come
Features and Benefits
Six panel construction with breathable eyelets
Dri-FIT technology wicks away moisture
Structured fit
Brand: Nike
Mid Crown
Slightly Curved Bill
Wipe clean with a damp cloth
Snap Closure
Imported
Embroidered graphics with raised details
Officially licensed
Material: 100% Polyester
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();