wip: Saving work

This commit is contained in:
Sol Irvine
2023-08-31 20:06:14 -07:00
parent c044d494a4
commit b7d78faaf0
19 changed files with 40 additions and 24 deletions

View File

@@ -23,7 +23,7 @@ export default async function Page({ params }: { params: { locale?: SupportedLoc
let cart;
if (cartId) {
cart = await getCart(cartId);
cart = await getCart({ cartId, language: params?.locale?.toUpperCase() });
}
const awardsPage = await getPage({ handle: 'awards', language: params?.locale?.toUpperCase() });