client: filter current organization

This commit is contained in:
fantasticit 2022-06-30 21:59:14 +08:00
parent 85a12fb03c
commit f1a788fce1
1 changed files with 31 additions and 28 deletions

View File

@ -11,6 +11,7 @@ import styles from './index.module.scss';
const { Text, Paragraph } = Typography;
export const UserOrganizationsSwitcher = () => {
const { organizationId } = useRouterQuery<{ organizationId: string }>();
const {
data: userOrganizations,
loading: userOrganizationsLoading,
@ -29,7 +30,9 @@ export const UserOrganizationsSwitcher = () => {
<Dropdown.Menu>
{userOrganizations.length ? (
<>
{userOrganizations.map((org) => {
{userOrganizations
.filter((org) => org.id !== organizationId)
.map((org) => {
return (
<Dropdown.Item key={org.id} style={{ padding: 0 }}>
<Link