Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 140756272
ITEM: BSNIPER8
8 oz Spray. This spray modifies malodors at their core to eliminate odor-causing microbes, and the unique organic molecular compound changes the size of malodors, so they are unable to be stored within your nose.
Features and Benefits
Modifies malodors at their core that produce odors
Unique organic molecular compound restructures malodors making them unable to fit inside nasal receptors
Works within 24 hours to remove odors
Pleasant scent
8-ounce capacity
Specifications
Product Type: Odor Eliminator
Activity: Athletic Performance
What's in the Box
A&R Blue Sniper Mini Odor Neutralizing 8 oz Spray
Shipping Restriction: Currently we are not able to ship this product to the following state(s).
NY, MN
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();