// Route-segment config for the (admin) group: every admin page is authenticated
// and accesses client-only state (Redux, useSearchParams), so opt out of static rendering.
import type { ReactNode } from "react";

export const dynamic = "force-dynamic";

export default function AdminGroupLayout({ children }: { children: ReactNode }) {
  return children;
}
