Oops, fix bug in needed models count!

Lol to test text sizing, I added a "1" to the end of the actual number of models needed 🤣 removed it now!
This commit is contained in:
Emi Matchu 2021-07-11 19:10:14 -07:00
parent af493f6719
commit a1f3c1df13

View file

@ -491,7 +491,7 @@ function ItemModelingSummary({ item }) {
if (item.speciesThatNeedModels.length > 0) {
return (
<Box fontSize="xs" fontStyle="italic" fontWeight="600" opacity="0.8">
Need {item.speciesThatNeedModels.length}1 models
Need {item.speciesThatNeedModels.length} models
</Box>
);
}