import type { GetServerSideProps } from 'next'; export const getServerSideProps: GetServerSideProps = async () => ({ redirect: { destination: '/setup', permanent: false, }, }); export default function ReviewFlowRedirect() { return null; }