From b528301e4353ae6396850263126853a87f44ca0a Mon Sep 17 00:00:00 2001 From: root Date: Mon, 29 Jun 2026 11:48:24 +0200 Subject: [PATCH] fix(docs): add missing imports for CurlBlock and resolveApiBase The docs page was using CurlBlock and resolveApiBase without importing them. This was likely accidentally removed during a previous merge, breaking the build. --- src/app/docs/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/docs/page.tsx b/src/app/docs/page.tsx index 6769a87..ab17d1d 100644 --- a/src/app/docs/page.tsx +++ b/src/app/docs/page.tsx @@ -1,5 +1,7 @@ import { PageShell } from "@/components/PageShell"; +import { CurlBlock } from "@/components/CurlBlock"; import { messages } from "@/lib/messages"; +import { resolveApiBase } from "@/lib/resolveApiBase"; export const metadata = { title: "Docs — AgentPay" };