Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity: Limit 1 per customer per day
STYLE IT WITH
about this product
SKU: 010519908
ITEM: 1865017
Power through the water and heavy vegetation with the Minn Kota® Weedless Wedge 2 Replacement Prop. Swept-back, flared blades sweep weeds away to help your boat glide through the water, even at slow speeds, without draining battery power. This prop fits 3-5/8" diameter motors and comes with a nut kit for quick and easy installation.
Features and Benefits
Fits 3-5/8" diameter motors
Swept-back, flared blades sweep weeds away to move through heavy vegetation, even at slow speeds
Helps conserve battery power
Comes with a nut kit for quick and easy installation
Specifications
Product Type: Trolling Motor Accessories
Activity: Boating
What's in the Box
Minn Kota® Weedless Wedge 2 Replacement Prop
Prop nut kit A
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();