Don't show "item needs models" for invalid pets

This commit is contained in:
Emi Matchu 2021-02-09 22:56:10 -08:00
parent 4aade5782f
commit 27f441df36

View file

@ -760,7 +760,10 @@ function ItemPageOutfitPreview({ itemId }) {
{ {
// Wait for us to start _requesting_ the appearance, and _then_ // Wait for us to start _requesting_ the appearance, and _then_
// for it to load, and _then_ check compatibility. // for it to load, and _then_ check compatibility.
!loadingGQL && !appearance.loading && !isCompatible && ( !loadingGQL &&
!appearance.loading &&
petState.isValid &&
!isCompatible && (
<Tooltip <Tooltip
label={ label={
couldProbablyModelMoreData couldProbablyModelMoreData