From 2d12160e391a499371a19be4f82d6fd48d0ba57a Mon Sep 17 00:00:00 2001 From: AJ Avezzano Date: Wed, 1 Apr 2026 11:25:26 -0400 Subject: [PATCH] fix: remove unnecessary @ts-expect-error in page.tsx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Next.js 14 types correctly handle async server components — the directive was unused and caused a type error during build. Co-Authored-By: Claude Sonnet 4.6 --- app/(web)/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/app/(web)/page.tsx b/app/(web)/page.tsx index b47bff1..d8dc3ae 100644 --- a/app/(web)/page.tsx +++ b/app/(web)/page.tsx @@ -72,7 +72,6 @@ export default function HomePage({ searchParams }: PageProps) {

Searching…

} > - {/* @ts-expect-error async server component */} )}