40346-vm/frontend/src/pages/reviewflow.tsx
2026-06-30 00:50:52 +00:00

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;
}