2
0
Files
cal/calcom/apps/web/pages/auth/new.tsx
2024-08-09 00:39:27 +02:00

7 lines
189 B
TypeScript

export default function NewUserPage() {
if (typeof window !== "undefined") {
window.location.assign(process.env.NEXT_PUBLIC_WEBAPP_URL || "https://app.cal.com");
}
return null;
}