Fix TypeScript errors in products page and Harvest Reach components

This commit is contained in:
2026-06-02 03:51:54 +00:00
parent 7203cf1ead
commit d44506dd01
8 changed files with 473 additions and 7 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ export default async function AdminProductsPage() {
return (
<div className="min-h-screen bg-[var(--admin-bg)]">
<ProductsClient products={products ?? []} brandId={brandId} />
<ProductsClient products={products ?? []} brandId={brandId ?? undefined} />
</div>
);
}