[object Object]

← back to Dw Domain Fleet

fix(catalog): drop dead display_variant junk check that emptied all microsite grids (TK-11307/TK-11037, Steve Option A)

9452a19f6735a219ba17e693bb08d3a9c8ce8675 · 2026-09-11 11:08:25 -0700 · Steve Abrams

Files touched

Diff

commit 9452a19f6735a219ba17e693bb08d3a9c8ce8675
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Fri Sep 11 11:08:25 2026 -0700

    fix(catalog): drop dead display_variant junk check that emptied all microsite grids (TK-11307/TK-11037, Steve Option A)
---
 shared/catalog.js | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/shared/catalog.js b/shared/catalog.js
index 4613b36..d9bc33f 100644
--- a/shared/catalog.js
+++ b/shared/catalog.js
@@ -21,7 +21,11 @@ function isJunk(p) {
   if (!p.handle) return true;
   if (HOUSEHOLD.test(p.title || '')) return true;
   if (/^\d{13,}$/.test(p.sku || '')) return true;
-  if (/display.?variant/i.test((p.tags || []).join(' '))) return true;
+  // TK-11307/TK-11037 (Steve approved Option A, 2026-09-11): the 'display_variant' tag
+  // stopped discriminating — it went from 2,166/15,000 products to 100% of the catalog
+  // (data-shape change at TK-11186/3161f75), so this check zeroed CLEAN and emptied every
+  // microsite grid fleet-wide for 2 days. Removed; showroom hiding is handled by
+  // isShowroomProduct, real junk by the checks above.
   return false;
 }
 

← d020049 content drip: +8 fresh article(s) — 1800wallcoverings.com, a  ·  back to Dw Domain Fleet  ·  snapshot before TK-11463 pull-catalog variant fix: uncommitt 42798ff →