Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 162421828
ITEM: 203159652
Complete your Utah Mammoth game day outfit with this 9TWENTY Adjustable HatThis Utah Mammoth hat features a relaxed unstructured fit that sits low on your head for a casual comfortable feel Embroidered graphics with raised details bring the Mammoth logo to life making this hat a stylish way to show your team spirit
Features and Benefits
Imported
Adjustable fabric strap with slide buckle
Low Crown
Officially licensed
Brand: New Era
Embroidered graphics with raised details
Curved bill
Six panels with eyelets
Unstructured relaxed fit
One size fits most
Woven clip tag
Material: 100% Cotton
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();