Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 150915599
ITEM: GAR1801
Prove your loyalty with help from the Tag Express Cowboys Team Garden Flag. Great for decorating your home or fan space, this flag boasts a team design to show your spirit.
Features and Benefits
Great for decorating your home or fan space
Team design showcases your fandom
Specifications
Product Type: Novelty
Activity: Pro Sports
What's in the Box
Tag Express Cowboys Team Garden Flag
Shipping Restriction: Currently we are not able to ship this product to the following state(s).
NY
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();