From b830198febe8fc0ad17af7b2c910ab1bbd9d1eba Mon Sep 17 00:00:00 2001 From: Matchu Date: Thu, 10 Aug 2023 18:53:25 -0700 Subject: [PATCH] Oops, fix bad export in ItemPage This I think is why the page was reloading when you try to item search? The failed import was triggering our "hey maybe this is an old module URL that got deleted" code? --- app/javascript/wardrobe-2020/ItemPage.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/javascript/wardrobe-2020/ItemPage.js b/app/javascript/wardrobe-2020/ItemPage.js index d53211e9..e6bc2dc6 100644 --- a/app/javascript/wardrobe-2020/ItemPage.js +++ b/app/javascript/wardrobe-2020/ItemPage.js @@ -1427,5 +1427,3 @@ function buildSortKeyForZoneLabelsAndTheirBodies({ zoneLabel, bodies }) { return `${representsAllBodies ? "A" : "Z"}-${inverseBodyCount}-${zoneLabel}`; } - -export default ItemPage;