diff --git a/app/javascript/wardrobe-2020/WardrobePage/PosePicker.js b/app/javascript/wardrobe-2020/WardrobePage/PosePicker.js
index 2ce1651b..fdbcc287 100644
--- a/app/javascript/wardrobe-2020/WardrobePage/PosePicker.js
+++ b/app/javascript/wardrobe-2020/WardrobePage/PosePicker.js
@@ -23,7 +23,7 @@ import {
useToast,
useToken,
} from "@chakra-ui/react";
-import { ChevronDownIcon } from "@chakra-ui/icons";
+import { ChevronDownIcon, WarningTwoIcon } from "@chakra-ui/icons";
import { loadable } from "../util";
import { petAppearanceFragment } from "../components/useOutfitAppearance";
@@ -422,14 +422,22 @@ function PosePickerTable({ poseInfos, onChange, initialFocusRef }) {
{poseInfos.unconverted.isAvailable && (
-
+ marginBottom="2"
+ >
+
+
+
)}
);
@@ -622,6 +630,40 @@ function PosePickerEmptyExplanation() {
);
}
+function RetiredUCWarning({ isSelected }) {
+ return (
+
+
+
+
+
+
+
+ "Unconverted" pets are no longer available on Neopets.com, and have been
+ replaced with the very similar Styles feature. We're just keeping this
+ as an archive!
+
+
+ );
+}
+
function StyleSelect({
selectedStyleId,
altStyles,
@@ -897,7 +939,7 @@ function getLabel(pose) {
} else if (pose === "SICK_MASC" || pose === "SICK_FEM") {
return "Sick";
} else if (pose === "UNCONVERTED") {
- return "Classic UC";
+ return "Retired UC";
} else {
return "Default";
}