I dont know how to create dynamic routes on remix shopify app template

Hi Zouker,

I think that, since your file is named app.invoices.[id].tsx, the param you’re looking for is id, not orderId so you could change const orderId = params ? params.orderId : undefined; toconst orderId = params.id;`.