import { useSession } from "next-auth/react"; import type { Dispatch } from "react"; import type { UserTableAction, UserTableState } from "./types"; export function ChangeUserRoleModal(props: { state: UserTableState; dispatch: Dispatch }) { const { data: session } = useSession(); const orgId = session?.user.org?.id; if (!orgId || !props.state.changeMemberRole.user) return null; return null; }