diff --git a/src/app/WardrobePage/Item.js b/src/app/WardrobePage/Item.js
index e815d4f..2e48fca 100644
--- a/src/app/WardrobePage/Item.js
+++ b/src/app/WardrobePage/Item.js
@@ -74,14 +74,18 @@ function Item({
{item.name}
-
+
+ {item.isNc ? (
+ NC
+ ) : (
+ NP
+ )}
{shouldShowZones &&
occupiedZoneLabels.map((zoneLabel) => (
{getZoneShorthand(zoneLabel)}
@@ -229,17 +233,17 @@ function ItemContainer({ children, isFocusable = true }) {
* ItemThumbnail shows a small preview image for the item, including some
* hover/focus and worn/unworn states.
*/
-function ItemThumbnail({ src, isWorn, isNc }) {
+function ItemThumbnail({ src, isWorn }) {
const theme = useTheme();
const colorMode = useColorMode();
const borderColor = useColorModeValue(
- isNc ? theme.colors.purple["700"] : theme.colors.green["700"],
+ theme.colors.green["700"],
"transparent"
);
const focusBorderColor = useColorModeValue(
- isNc ? theme.colors.purple["600"] : theme.colors.green["600"],
+ theme.colors.green["600"],
"transparent"
);
@@ -286,21 +290,6 @@ function ItemThumbnail({ src, isWorn, isNc }) {
>
- {isNc && (
-
- NC
-
- )}
);
}