Hi, I am using Hydrogen and creating my own checkout flow. On the cart page, I grab the cartId and assemble a new URL called /check-out//consignee. This works just fine on localhost. But when I deploy to Oxygen, the cartId becomes undefined. Please see attached screenshots. Are Shopify IDs such as cartIds, customerIds, etc redacted on Oxygen URLs? This is how I assemble the URL:
export const action: ActionFunction = async ({
request,
context,
params: {lang, cId},
}) => {
...
return redirect(
lang
? `${lang}/check-out/${cId}/consignee`
: `/check-out/${cId}/consignee`,
{
headers: {
'Set-Cookie': await context.session.commit(),
},
},
);
}
Any help appreciated! Thank you!

