2
0
Files
cal/calcom/packages/lib/navigateInTopWindow.ts
2024-08-09 00:39:27 +02:00

6 lines
295 B
TypeScript

export const navigateInTopWindow = (url: string) => {
// In some weird unknown case, window.top.location could be null as per typescript. In such case, we still do the redirect but in same window
const location = window.top ? window.top.location : window.location;
location.href = url;
};