Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 158693812
ITEM: 201725154
Add a versatile Houston Astros headwear option to your rotation with this Club Adjustable Hat by Nike Its solid design focuses attention on the team details in raised embroidery This Houston Astros hat is made from organic cotton twill fabric for a soft feel and comfortable fit
Features and Benefits
Imported
Unstructured relaxed fit
Officially licensed
Embroidered graphics with raised details
Wipe clean with a damp cloth
Six panels with eyelets
Brand: Nike
Mid Crown
Adjustable fabric strap with slide buckle
Material: 100% Organic Cotton
Curved bill
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();