Skip to content

Commit 843bb00

Browse files
committed
Merge remote-tracking branch 'origin/deploy-prod'
2 parents 69f600f + 5475b75 commit 843bb00

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"rehype-highlight": "^7.0.0",
4747
"remark-gfm": "^4.0.0",
4848
"scroll-behavior-polyfill": "^2.0.13",
49-
"shopify-buy": "^2.21.1",
49+
"shopify-buy": "^2.22.0",
5050
"solid-dismiss": "^1.7.122",
5151
"solid-heroicons": "<3.0.0",
5252
"solid-js": "1.8.16",

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/pages/Store.data.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export const StoreData: RouteLoadFunc = () => {
2525
},
2626
),
2727
);
28-
createEffect(() => console.log(collection()));
2928
return {
3029
get commerce() {
3130
return commerce;

src/utils/shopify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ export const createCollection = (
224224
language: options.language,
225225
});
226226
const [products, { refetch }] = createResource(collectionId, async (id) =>
227-
client.collection.fetchWithProducts(id),
227+
client.collection.fetchWithProducts(id, { productsFirst: 100 }),
228228
);
229229
return [products, refetch];
230230
};

0 commit comments

Comments
 (0)