Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 159624595
ITEM: 201043022
Add a classic touch to your Chicago Cubs wardrobe with this '47 Campscape Hitch Adjustable Hat It boasts a retro-inspired silhouette constructed with a pinched five-panel crown and braided rope cord adding some vintage flair to your game-day look With a relaxed fit and curved bill this Chicago Cubs hat provides a comfortable and stylish way to show your support
Features and Benefits
Officially licensed
Mid and rear eyelets
Brand: '47
Wipe clean with a damp cloth
Imported
Material: 100% Nylon
The '47 Hitch is a retro-inspired silhouette constructed with a pinched five-panel crown and a braided rope cord
Unstructured relaxed fit
Mid Crown
Contrast-color undervisor
One size fits most
Team name and logo embroidered with raised details across the front
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();