From 71ec5ddc58c920f2c042257378a08ac7fbad9ea5 Mon Sep 17 00:00:00 2001 From: Matchu Date: Thu, 28 Jan 2021 10:34:09 -0800 Subject: [PATCH] Group poses by emotion first, in PosePickerSupport I think it's confusing that the poses in the dropdown start with the emotion word, but are grouped by the gender presentation word! It's also different than the precedence order! I've reordered them. --- src/app/WardrobePage/support/PosePickerSupport.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/WardrobePage/support/PosePickerSupport.js b/src/app/WardrobePage/support/PosePickerSupport.js index 072874f..1061e76 100644 --- a/src/app/WardrobePage/support/PosePickerSupport.js +++ b/src/app/WardrobePage/support/PosePickerSupport.js @@ -399,10 +399,10 @@ export function PosePickerSupportSwitch({ isChecked, onChange }) { const POSE_NAMES = { HAPPY_MASC: "Happy Masc", - SAD_MASC: "Sad Masc", - SICK_MASC: "Sick Masc", HAPPY_FEM: "Happy Fem", + SAD_MASC: "Sad Masc", SAD_FEM: "Sad Fem", + SICK_MASC: "Sick Masc", SICK_FEM: "Sick Fem", UNCONVERTED: "Unconverted", UNKNOWN: "Unknown",