fix: open recent contact emails at "/" instead of 404ing on "/mail"

This commit is contained in:
Linus Rath
2026-06-05 16:07:38 +02:00
parent 6350e9dabc
commit fd0b866339
+1 -1
View File
@@ -172,7 +172,7 @@ export function ContactActivity({ contact }: ContactActivityProps) {
const handleOpenEmail = (email: Email) => {
selectEmail(email);
router.push("/mail");
router.push("/");
};
const handleOpenEvent = (event: CalendarEvent) => {