Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions apps/console/src/components/tasks/TasksCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -648,12 +648,7 @@ function TaskRow(props: TaskRowProps) {
</div>
{task.assignedTo?.fullName && (
<div className="text-sm text-txt-secondary ml-auto mr-8">
<Link
className="hover:underline"
to={`/organizations/${organizationId}/people/${task.assignedTo.id}`}
>
{task.assignedTo.fullName}
</Link>
{task.assignedTo.fullName}
</div>
)}
<div className="flex gap-2 items-center">
Expand Down
12 changes: 2 additions & 10 deletions apps/console/src/pages/iam/organizations/_components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import {
IconBox,
IconCircleProgress,
IconFire3,
IconGroup1,
IconInboxEmpty,
IconKey,
IconListStack,
Expand Down Expand Up @@ -122,13 +121,6 @@ export function Sidebar(props: { fKey: SidebarFragment$key }) {
to={`${prefix}/frameworks`}
/>
)}
{organization.canListMembers && (
<SidebarItem
label={__("People")}
icon={IconGroup1}
to={`${prefix}/people`}
/>
)}
{organization.canListThirdParties && (
<SidebarItem
label={__("Third parties")}
Expand Down Expand Up @@ -220,9 +212,9 @@ export function Sidebar(props: { fKey: SidebarFragment$key }) {
to={`${prefix}/cookie-banners`}
/>
)}
{organization.canUpdateOrganization && (
{(organization.canUpdateOrganization || organization.canListMembers) && (
<SidebarItem
label={__("Settings")}
label={__("Organization")}
icon={IconSettingsGear2}
to={`${prefix}/settings`}
/>
Expand Down
199 changes: 0 additions & 199 deletions apps/console/src/pages/iam/organizations/people/PersonPage.tsx

This file was deleted.

Loading
Loading