Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 119207332
ITEM: 33611
Designed for football helmets, the Sportstar 1.5 in Block Number Decals come with numbers from 0 to 9. The 1.5-inch tall numbers are crafted with contrasting outlines to help them stand out.
Features and Benefits
Numbers from 0 to 9
Contrasting outlines to stand out
1.5 inches tall
Specifications
Product Type: Sporting Accessories
Product Height (in.): 1.5
Activity: Football
Product height (in.):
What's in the Box
Sportstar 1.5 in Block Number Decals
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();