From 2ca5e602a387a07e341c411b28174445a8b44424 Mon Sep 17 00:00:00 2001 From: "Brennan Wilkes (Text Groove)" Date: Thu, 29 Jan 2026 19:08:37 -0800 Subject: [PATCH] feat: Proper craft cellars support --- src/stores/craftcellars.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/stores/craftcellars.js b/src/stores/craftcellars.js index 98e0a28..de3ee5f 100644 --- a/src/stores/craftcellars.js +++ b/src/stores/craftcellars.js @@ -300,6 +300,30 @@ function createStore(defaultUa) { startUrl: "https://craftcellars.ca/collections/rum?filter.v.availability=1", discoveryStartPage: 5, }, + { + key: "single-malt-scotch", + label: "Single Malt Scotch", + startUrl: "https://craftcellars.ca/collections/single-malt-scotch?filter.v.availability=1", + discoveryStartPage: 1, + }, + { + key: "other-scotch-styles", + label: "Other Scotch Styles", + startUrl: "https://craftcellars.ca/collections/other-scotch-styles?filter.v.availability=1", + discoveryStartPage: 1, + }, + { + key: "single-grain-scotch", + label: "Single Grain Scotch", + startUrl: "https://craftcellars.ca/collections/single-grain-scotch?filter.v.availability=1", + discoveryStartPage: 1, + }, + { + key: "blended-malt-scotch", + label: "Blended Malt Scotch", + startUrl: "https://craftcellars.ca/collections/blended-malt-scotch?filter.v.availability=1", + discoveryStartPage: 10, + }, ], }; }