Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 145937128
ITEM: SMSH4855-DPI98PPPRDTL
Your Detroit Pistons 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 1998 Hardwood Classics design with vintage Detroit Pistons colors and graphics show you're no casual fan
Features and Benefits
Officially licensed
Inseam for size S measures approx. 9''
Brand: Mitchell & Ness
Heat-sealed fabric applique
Machine wash, line dry
Mesh fabric
Lined
Sewn-on stripes
Two side pockets
Imported
Elastic waistband with drawstring
Material: 100% Polyester
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();