From a1f3c1df13cac05561de0e22c635f05eff6b99d4 Mon Sep 17 00:00:00 2001 From: Matchu Date: Sun, 11 Jul 2021 19:10:14 -0700 Subject: [PATCH] Oops, fix bug in needed models count! MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Lol to test text sizing, I added a "1" to the end of the actual number of models needed 🤣 removed it now! --- src/app/HomePage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/HomePage.js b/src/app/HomePage.js index 0d3b547..caf7b9b 100644 --- a/src/app/HomePage.js +++ b/src/app/HomePage.js @@ -491,7 +491,7 @@ function ItemModelingSummary({ item }) { if (item.speciesThatNeedModels.length > 0) { return ( - Need {item.speciesThatNeedModels.length}1 models + Need {item.speciesThatNeedModels.length} models ); }