fix cart names

This commit is contained in:
dylan
2024-03-31 14:26:16 -07:00
parent 943b11869c
commit c93e55fe60
2 changed files with 5 additions and 5 deletions

View File

@@ -25,7 +25,7 @@ const handler = async ({payload}: FirRouteInput<typeof payloadT>) => {
auth: token,
});
const carts = await getCarts(manifest.carts.map((name: string) => path.join(repoPath, name)));
const carts = await getCarts(repoPath, manifest.carts);
console.log({
manifest,