Small getAll fixes
This commit is contained in:
@@ -17,11 +17,11 @@ const webflow = new WebflowClient({
|
||||
webhookSecret: WEBFLOW_WEBHOOK_SECRET,
|
||||
});
|
||||
|
||||
export const load = async ({}: Parameters<PageServerLoad>[0]) => {
|
||||
export const load = async ({ }: Parameters<PageServerLoad>[0]) => {
|
||||
return {
|
||||
products: {
|
||||
printful: printful.Products.getAll(),
|
||||
webflow: webflow.Products.getAll(),
|
||||
printful: printful.Products.getAll({ forceAll: true }),
|
||||
webflow: webflow.Products.getAll({ forceAll: true }),
|
||||
},
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user