diff --git a/viz/app/store_page.js b/viz/app/store_page.js
index 7a20ed6..b3a985d 100644
--- a/viz/app/store_page.js
+++ b/viz/app/store_page.js
@@ -64,9 +64,7 @@ export async function renderStore($app, storeLabelRaw) {
@@ -358,10 +359,7 @@ export async function renderStore($app, storeLabelRaw) {
$maxPriceLabel.textContent = "No prices";
return;
}
- const atTop = Math.abs(selectedMaxPrice - boundMax) <= 0.01;
- $maxPriceLabel.textContent = atTop
- ? `${formatDollars(boundMax)} (all)`
- : `${formatDollars(selectedMaxPrice)}`;
+ $maxPriceLabel.textContent = `${formatDollars(selectedMaxPrice)}`;
}
if (pageMax === null) {
@@ -422,7 +420,6 @@ export async function renderStore($app, storeLabelRaw) {
const diffBadge = priceBadgeHtml(it);
const skuLink = `#/link/?left=${encodeURIComponent(String(it.sku || ""))}`;
- console.log(it);
return `
@@ -474,9 +471,7 @@ export async function renderStore($app, storeLabelRaw) {
}
if (pageMax !== null) {
- const atTop = Math.abs(selectedMaxPrice - boundMax) <= 0.01;
- const cap = atTop ? "all prices" : `≤ ${formatDollars(selectedMaxPrice)}`;
- $status.textContent = `In stock: ${total} item(s) (${cap}).`;
+ $status.textContent = `In stock: ${total} item(s) (≤ ${formatDollars(selectedMaxPrice)}).`;
return;
}