From 082af11b5b238f70305e74b27f26099fa75e2c3e Mon Sep 17 00:00:00 2001 From: Matchu Date: Wed, 3 Feb 2021 01:53:09 -0800 Subject: [PATCH] Don't say "(Can't be this color)" while loading --- src/app/ItemPage.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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