9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
'use client';
|
|
|
|
import { redirect } from 'next/navigation';
|
|
|
|
export default function OrganizationsPage() {
|
|
// Redirect to the correct organizations location
|
|
redirect('/admin/access-control/organizations');
|
|
}
|