Change "Not modeled yet" -> "Item needs models"

This commit is contained in:
Emi Matchu 2021-02-03 15:44:53 -08:00
parent be151ab400
commit 958d9c16b8

View file

@ -754,7 +754,7 @@ function ItemPageOutfitPreview({ itemId }) {
<Tooltip <Tooltip
label={ label={
couldProbablyModelMoreData couldProbablyModelMoreData
? "Not modeled yet" ? "Item needs models"
: "Not compatible" : "Not compatible"
} }
placement="top" placement="top"
@ -1021,7 +1021,7 @@ function SpeciesFaceOption({
disabledExplanation = "(Can't be this color)"; disabledExplanation = "(Can't be this color)";
} else if (!bodyIsCompatible) { } else if (!bodyIsCompatible) {
disabledExplanation = couldProbablyModelMoreData disabledExplanation = couldProbablyModelMoreData
? "(Not modeled yet)" ? "(Item needs models)"
: "(Not compatible)"; : "(Not compatible)";
} }