diff --git a/src/scripts/deploy.ts b/src/scripts/deploy.ts index 633a365..a5bffb0 100644 --- a/src/scripts/deploy.ts +++ b/src/scripts/deploy.ts @@ -10,11 +10,11 @@ export default async function deploy({ container }: ExecArgs) { // 1. Sync products from Sanity logger.info("--- Step 1: Syncing products from Sanity ---") - await syncSanity({ container }) + await syncSanity({ container, args: [] }) // 2. Link products to sales channel and set inventory logger.info("--- Step 2: Linking products and setting inventory ---") - await linkProducts({ container }) + await linkProducts({ container, args: [] }) logger.info("=== Deployment sync complete ===") }