diff --git a/src/app/WardrobePage/support/AllItemLayersSupportModal.js b/src/app/WardrobePage/support/AllItemLayersSupportModal.js
index cee7b69..38ce452 100644
--- a/src/app/WardrobePage/support/AllItemLayersSupportModal.js
+++ b/src/app/WardrobePage/support/AllItemLayersSupportModal.js
@@ -68,7 +68,7 @@ function AllItemLayersSupportModal({ item, isOpen, onClose }) {
function BulkAddBodySpecificAssetsForm({ onSubmit }) {
const zones = [...cachedZones].sort((a, b) =>
- `${a.label} (${a.id})`.localeCompare(`${b.label} (${b.id})`)
+ `${a.label}-${a.id}`.localeCompare(`${b.label}-${b.id}`)
);
const [minAssetId, setMinAssetId] = React.useState(null);
@@ -144,7 +144,7 @@ function BulkAddBodySpecificAssetsForm({ onSubmit }) {
>
{zones.map((zone) => (
))}
diff --git a/src/app/WardrobePage/support/ItemSupportAppearanceLayer.js b/src/app/WardrobePage/support/ItemSupportAppearanceLayer.js
index 1fca0f7..1d4ddfc 100644
--- a/src/app/WardrobePage/support/ItemSupportAppearanceLayer.js
+++ b/src/app/WardrobePage/support/ItemSupportAppearanceLayer.js
@@ -73,8 +73,14 @@ function ItemSupportAppearanceLayer({
/>
- {itemLayer.zone.label}
- Zone ID: {itemLayer.zone.id}
+
+
+ {itemLayer.zone.label}
+ {" "}
+
+ (Zone {itemLayer.zone.id})
+
+
Neopets ID: {itemLayer.remoteId}
DTI ID: {itemLayer.id}