mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 00:16:29 +02:00
7 lines
No EOL
232 B
TypeScript
7 lines
No EOL
232 B
TypeScript
import { redirect } from 'next/navigation';
|
|
import { requireActiveBillingSubscription } from '../lib/billing';
|
|
|
|
export default async function Page() {
|
|
await requireActiveBillingSubscription();
|
|
redirect('/projects/select');
|
|
} |