Don't show "item needs models" for invalid pets
This commit is contained in:
parent
4aade5782f
commit
27f441df36
1 changed files with 19 additions and 16 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue