joschan21 / digitalhippo

A Modern Fullstack E-Commerce Marketplace for Digital Products
3.2k stars 605 forks source link

Compile TypeScript error on payment-router.ts related to price when line_items is being pushed in the array #24

Open dawda92 opened 8 months ago

dawda92 commented 8 months ago

I was facing an issue related to not defining a specific type for the prod when the line_items is being pushed:

Skærmbillede 2024-01-15 kl  20 50 26

If anyone else are facing the same issue, remember to set the type for the product, when you are iterating over the array of line_items:

filteredProducts.forEach((product: Product) => { line_items.push({ price: product.priceId!, quantity: 1, }) })

rarechrisclark commented 8 months ago

thanks for the good pick-up! Saved me some debugging time