digitalhippo icon indicating copy to clipboard operation
digitalhippo copied to clipboard

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

Open dawda92 opened this issue 1 year ago • 1 comments

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, }) })

dawda92 avatar Jan 15 '24 19:01 dawda92