* fix: relocate filter segment buttons on org member list * implement toolbarContainerRef * adjust location * reorganize the hierarchy of DataTableProvider * rename toolbar container to cta container * move clear button to toolbar right
25 lines
758 B
TypeScript
25 lines
758 B
TypeScript
"use client";
|
|
|
|
import { CTA_CONTAINER_CLASS_NAME } from "@calcom/features/data-table/lib/utils";
|
|
import MembersView from "@calcom/features/ee/organizations/pages/members";
|
|
import Shell from "@calcom/features/shell/Shell";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
|
|
const MembersPage: React.FC = () => {
|
|
const { t } = useLocale();
|
|
return (
|
|
<Shell
|
|
withoutMain={false}
|
|
title={t("organization_members")}
|
|
description={t("organization_description")}
|
|
heading={t("organization_members")}
|
|
subtitle={t("organization_description")}
|
|
headerClassName="hidden md:block"
|
|
actions={<div className={`mb-2 ${CTA_CONTAINER_CLASS_NAME}`} />}>
|
|
<MembersView />
|
|
</Shell>
|
|
);
|
|
};
|
|
|
|
export default MembersPage;
|