Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 145931746
ITEM: SMSH4855-MTI93PPPBLBK
Your Minnesota Timberwolves allegiance is easy to spot each time you sport these Mitchell Ness Split Swingman shorts Mesh fabric keeps you cool around the clock while side pockets conveniently hold your essentials A bold 1993 Hardwood Classics design with vintage Minnesota Timberwolves colors and graphics show you're no casual fan
Features and Benefits
Lined
Mesh fabric
Inseam for size S measures approx. 9''
Material: 100% Polyester
Brand: Mitchell & Ness
Officially licensed
Two side pockets
Imported
Machine wash, line dry
Elastic waistband with drawstring
Heat-sealed fabric applique
Sewn-on stripes
Specifications
Product Type: Shorts
Age Group: Adults
Gender: Men's
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();