Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 162420577
ITEM: 203124250
The moment Utah hockey fans have been waiting for is finally here Charge tusks first onto the ice with the newly named Utah Mammoth by grabbing this Primary Logo Legacy T-Shirt from Fanatics Inspired by the strength and earth-shattering presence of the ancient giants that called Utah home 10000 years ago the club logo features a mammoth mid-charge with the Wasatch Mountain Range's snow-capped peaks as the silhouette incorporating both the past and present glory of the great state of Utah Featuring a cozy fabric construction this piece will keep you comfortable as you roar "Tusks up" at the next Utah Mammoth game
Features and Benefits
Material 100 Cotton
Slightly dropped shoulders
Screen print graphics
Drop tail hem
Short sleeve
Brand: Fanatics
Officially licensed
Imported
Machine wash, tumble dry low
Hip length (Measures approx. 25-27)
Crew neck
Lightweight feel (150gsm)
Specifications
Sleeve length: Short Sleeve
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();