fix: Revert issues with cart localization

This commit is contained in:
Sol Irvine
2023-09-01 02:32:21 -07:00
parent f1bd230b81
commit 7bf920ccc0
20 changed files with 38 additions and 82 deletions

View File

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