Bob AI: fix build errors (attempt 1)

This commit is contained in:
2026-02-23 00:13:44 +02:00
parent 1be04cf963
commit 3a9fece564
2 changed files with 8 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
use client"; "use client";
import { Suspense, use, useCallback } from "react"; import { Suspense, use, useCallback } from "react";
import { useRouter } from "next/navigation"; import { useRouter } from "next/navigation";
@@ -13,7 +13,7 @@ import { useCheckout } from "@/hooks/useCheckout";
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
interface ProductPageProps { interface ProductPageProps {
params: Promise<{ id: string }>; params: { id: string };
} }
export default function ProductPage({ params }: ProductPageProps) { export default function ProductPage({ params }: ProductPageProps) {
@@ -25,7 +25,7 @@ export default function ProductPage({ params }: ProductPageProps) {
} }
function ProductPageContent({ params }: ProductPageProps) { function ProductPageContent({ params }: ProductPageProps) {
const { id } = use(params); const { id } = params;
const router = useRouter(); const router = useRouter();
const { const {
@@ -217,7 +217,8 @@ function ProductPageContent({ params }: ProductPageProps) {
total={`$${cartTotal}`} total={`$${cartTotal}`}
buttons={[ buttons={[
{ {
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, text: isCheckoutLoading ? "Processing..." : "Check Out",
onClick: handleCheckout,
}, },
]} ]}
/> />
@@ -226,4 +227,4 @@ function ProductPageContent({ params }: ProductPageProps) {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -1,4 +1,4 @@
use client"; "use client";
import { Suspense } from "react"; import { Suspense } from "react";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
@@ -142,4 +142,4 @@ export default function ShopPage() {
<ShopPageContent /> <ShopPageContent />
</Suspense> </Suspense>
); );
} }