Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 155712774
ITEM: 200542858
Showcase your unwavering enthusiasm for the Boston Bruins by snagging this Extra Time adjustable hat from Fanatics It features a signature Boston Bruins graphic embroidered on the front panels and a contrasting single-color design The slide closure makes it easy to secure your perfect fit whenever you reach for this spirited cap
Features and Benefits
Low Crown
Material: 100% Cotton
Six panels with eyelets
Brand: Fanatics
Imported
One size fits most
Wipe clean with a damp cloth
Curved bill
Unstructured relaxed fit
Embroidered graphics
Adjustable fabric strap with slide buckle
Officially licensed
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();