cal.pub0.org/pages/integrations/[integration].tsx

10 lines
196 B
TypeScript
Raw Normal View History

2021-10-12 09:35:44 +00:00
function RedirectPage() {
return null;
2021-04-10 12:02:35 +00:00
}
2021-10-12 09:35:44 +00:00
export async function getServerSideProps() {
return { redirect: { permanent: false, destination: "/integrations" } };
2021-07-30 23:05:38 +00:00
}
2021-10-12 09:35:44 +00:00
export default RedirectPage;