diff --git a/packages/carlton/src/shared.js b/packages/carlton/src/shared.js index 1b399fc2055..6b46ca693d3 100644 --- a/packages/carlton/src/shared.js +++ b/packages/carlton/src/shared.js @@ -7,9 +7,7 @@ export const calculateRatios = (part) => { // Calculate different values for reducing from chest to hips via waist store.set('chest', measurements.chest * (1 + options.chestEase)) store.set('waist', measurements.waist * (1 + options.waistEase)) - store.set('hips', measurements.hips * (1 + options.hipsEase)) store.set('seat', measurements.seat * (1 + options.seatEase)) store.set('waistReduction', store.get('chest') - store.get('waist')) - store.set('hipsReduction', store.get('chest') - store.get('hips')) }