Midday / apps /dashboard /src /utils /desktop.ts
Jules
Final deployment with all fixes and verified content
c09f67c
import { headers } from "next/headers";
export async function isDesktopApp() {
const headersList = await headers();
const userAgent = headersList.get("user-agent");
return userAgent?.includes("Midday Desktop App");
}