diff --git a/packages/jaeger/config/index.js b/packages/jaeger/config/index.js index 933707a2d13..a9c39a82960 100644 --- a/packages/jaeger/config/index.js +++ b/packages/jaeger/config/index.js @@ -78,9 +78,9 @@ export default { 'bicepsCircumference', 'chestCircumference', 'hipsCircumference', - 'hpsToHipsBack', - 'naturalWaist', - 'naturalWaistToHip', + 'hpsToWaistBack', + 'waistCircumference', + 'waistToHips', 'neckCircumference', 'shoulderSlope', 'shoulderToElbow', diff --git a/packages/jaeger/src/shared.js b/packages/jaeger/src/shared.js index 073995d0527..ea000bc3686 100644 --- a/packages/jaeger/src/shared.js +++ b/packages/jaeger/src/shared.js @@ -1,7 +1,7 @@ /** * This calculates a bunch of helper variables and stores them */ -export const calculateRatios = part => { +export const calculateRatios = (part) => { let { store, measurements, options } = part.shorthand() // Make sure collar height makes sense @@ -10,7 +10,7 @@ export const calculateRatios = part => { // Calculate different values for reducing from chest to hips via waist store.set('chest', measurements.chestCircumference * (1 + options.chestEase)) - store.set('waist', measurements.naturalWaist * (1 + options.waistEase)) + store.set('waist', measurements.waistCircumference * (1 + options.waistEase)) store.set('hips', measurements.hipsCircumference * (1 + options.hipsEase)) store.set('waistReduction', store.get('chest') - store.get('waist'))