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