Prime Brands Group Louisiana State University Apple AirPod Case
$9.99
$9.49$9.49 with Academy Credit Card
Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 124060443
ITEM: NCAA-APC-LSU
Protect your AirPods with the PBG Louisiana State University Apple AirPod Case. Constructed with durable silicone material, this case keeps your AirPods safe and secure, while the team graphics show off your support for the Tigers.
Features and Benefits
Keeps your AirPods safe and secure
Silicone construction for durability
Fits over charging case
Team graphics for style
Specifications
Manufacturer warranty - general: 1 year limited
What's in the Box
Prime Brands Group Louisiana State University Apple AirPod Case
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();