Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 162842340
ITEM: 200856810
Sport Barcelona headwear with a distinctive look when you put on this Wing Racer hat Its unique shape features breathable mesh panels and a rubberized Barcelona crest An adjustable closure lets you click in the most comfortable fit
Features and Benefits
Embroidered graphics
Material: 86% Nylon/14% Polyester
Wipe clean with a damp cloth
Brand: Fan Ink
One size fits most
Officially licensed
Imported
Flat bill
Heat-sealed rubberized applique
Adjustable fabric strap with snap buckle
Five panels with mesh side overlay
Low Crown
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();