Rename getAll to list

This commit is contained in:
Dominic Ferrando
2026-06-24 16:41:38 -04:00
parent 5d643e883e
commit 968afb5789
5 changed files with 9 additions and 9 deletions
@@ -20,8 +20,8 @@ const webflow = new WebflowClient({
export const load = async ({ }: Parameters<PageServerLoad>[0]) => {
return {
products: {
printful: printful.Products.getAll({ forceAll: true }),
webflow: webflow.Products.getAll({ forceAll: true }),
printful: printful.Products.list({ forceAll: true }),
webflow: webflow.Products.list({ forceAll: true }),
},
};
};