From 612fc03cde6f8e3a137098c0da23816c9087b81d Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Wed, 9 Jul 2025 21:04:41 +0200 Subject: [PATCH] refactor: fix import syntax in page.tsx --- apps/web/src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx index 9179176..7430847 100644 --- a/apps/web/src/app/page.tsx +++ b/apps/web/src/app/page.tsx @@ -1,7 +1,7 @@ import { Hero } from "@/components/landing/hero"; import { Header } from "@/components/header"; import { Footer } from "@/components/footer"; -import { getWaitlistCount } from "@/lib/waitlist";] +import { getWaitlistCount } from "@/lib/waitlist"; // Force dynamic rendering so waitlist count updates in real-time export const dynamic = "force-dynamic";