From fd0b866339dec37a4ee498373063fe76f13317d7 Mon Sep 17 00:00:00 2001 From: Linus Rath <139418639+rathlinus@users.noreply.github.com> Date: Fri, 5 Jun 2026 16:07:38 +0200 Subject: [PATCH] fix: open recent contact emails at "/" instead of 404ing on "/mail" --- components/contacts/contact-activity.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/contacts/contact-activity.tsx b/components/contacts/contact-activity.tsx index 4b3866e2..86b50b98 100644 --- a/components/contacts/contact-activity.tsx +++ b/components/contacts/contact-activity.tsx @@ -172,7 +172,7 @@ export function ContactActivity({ contact }: ContactActivityProps) { const handleOpenEmail = (email: Email) => { selectEmail(email); - router.push("/mail"); + router.push("/"); }; const handleOpenEvent = (event: CalendarEvent) => {