Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
This item may ship from a different location therefore only eligible for ground shipping. Additionally, this item is not eligible for APO/FPO delivery.
STYLE IT WITH
about this product
SKU: 135176821
ITEM: WP-772
Kids can relax on the patio, by the pool or in the backyard with a Sportspower Kids Chaise Lounge Chair. Northern Europe Scandinavian Fir wood delivers enhanced stability while armrests and a tilted headrest enhance comfort.
Features and Benefits
Chaise chair provides a place to relax or do homework outside
Arm rests and tilted headrest enhance comfort
Northern Europe Scandinavian Fir construction for high weight and durability
Specifications
Inflatable: No
Product Type: Kids Outdoor Furniture
Activity: Kids Play,Outdoor Games
What's in the Box
Sportspower Kids Chaise Lounge Chair
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();