diff --git a/src/app/ItemPage.js b/src/app/ItemPage.js index 431ae9a..bcaf877 100644 --- a/src/app/ItemPage.js +++ b/src/app/ItemPage.js @@ -957,7 +957,9 @@ function SpeciesFaceOption({ const cursor = isLoading ? "wait" : isDisabled ? "not-allowed" : "pointer"; let disabledExplanation = null; - if (!isValid) { + if (isLoading) { + // If we're still loading, don't try to explain anything yet! + } else if (!isValid) { disabledExplanation = "(Can't be this color)"; } else if (!bodyIsCompatible) { disabledExplanation = couldProbablyModelMoreData