Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 160869400
ITEM: 200249711
Show your love for your favorite MLB squad by snagging this Atlanta Braves Club adjustable hat Along with its classic team color it features an embroidered Atlanta Braves graphic on the front panels and an adjustable slide closure for the perfect fit Reach for this Nike cap when you're headed out on a sunny day and let everyone know who you feel the best on the diamond is
Features and Benefits
Material 100 Cotton
Adjustable fabric strap with slide buckle
Brand: Nike
Embroidered graphics with raised details
Imported
Officially licensed
Six panels with eyelets
Mid Crown
Curved bill
One size fits most
Unstructured relaxed fit
Wipe clean with a damp cloth
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();