From c47f7c1b6ad47a4b4e08bf264191deb795f3b01a Mon Sep 17 00:00:00 2001 From: Mohammad Khyata Date: Tue, 7 Apr 2026 13:05:22 +0300 Subject: [PATCH] fix build error --- apps/dashboard/app/(authenticated)/calendars/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/app/(authenticated)/calendars/page.tsx b/apps/dashboard/app/(authenticated)/calendars/page.tsx index efd503e..327344e 100644 --- a/apps/dashboard/app/(authenticated)/calendars/page.tsx +++ b/apps/dashboard/app/(authenticated)/calendars/page.tsx @@ -1,5 +1,5 @@ import { redirect } from "next/navigation" export default function CalendarsPage() { - redirect("/calendar/appointment/list") + return redirect("/calendar/appointment/list") }