Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 157242876
ITEM: 201523329
Complete your Miami Marlins game day look with this Club Performance Adjustable Hat from Nike This cap features a sleek gray colorway with a bold team color logo on the front perfect for showcasing your Miami Marlins fandom in style Designed with six panels and eyelets this cap provides excellent ventilation to keep you cool and comfortable whether you're at the ballpark or out and about in the city
Features and Benefits
Material 100 Polyester
Adjustable hook and loop fastener strap
Structured fit
Six panels with eyelets for ventilation
Officially licensed
Imported
Mid Crown
Brand: Nike
Curved bill
One size fits most
Wipe clean with a damp cloth
Team color logo across sleek gray front panels
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();