Skip to content

Commit

Permalink
Merge pull request #11 from Zenfulcode/patch-build-error
Browse files Browse the repository at this point in the history
fix: build error
  • Loading branch information
gkhaavik authored Dec 1, 2024
2 parents d9d4fab + 42fbc18 commit 7f9a841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(client)/products/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface ProductPageProps {
}

export default async function ProductPage({ params }: ProductPageProps) {
const product = await productApi.getProductById(parseInt(params.id));
const product = await productApi.getProductById(params.id);

return <ProductDetails product={product} />;
}

0 comments on commit 7f9a841

Please sign in to comment.