Fix typescript error

This commit is contained in:
Brendon Heinst 2026-02-24 17:25:01 +01:00
parent 1efa694538
commit 6975a546c8

View file

@ -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 ===")
}