Update frontend links to users

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-02-06 20:04:43 +04:00
parent 5fb389e8bc
commit d235f4a86b
3 changed files with 3 additions and 3 deletions

View File

@@ -262,7 +262,7 @@ function TaskRow(props: TaskRowProps) {
<div className="text-sm text-txt-secondary ml-auto mr-8">
<Link
className="hover:underline"
to={`/organizations/${organizationId}/people/${task.assignedTo.id}`}
to={`/organizations/${organizationId}/users/${task.assignedTo.id}`}
>
{task.assignedTo.fullName}
</Link>

View File

@@ -140,7 +140,7 @@ export default function MeetingDetailPage(props: Props) {
<div key={attendee.id} className="flex gap-2 items-center">
<Avatar name={attendee.fullName ?? ""} />
<Link
to={`/organizations/${organizationId}/people/${attendee.id}`}
to={`/organizations/${organizationId}/users/${attendee.id}`}
className="text-sm hover:underline"
>
{attendee.fullName}

View File

@@ -348,7 +348,7 @@ function MeetingRow({
<div key={attendee.id} className="flex gap-2 items-center">
<Avatar name={attendee.fullName ?? ""} />
<Link
to={`/organizations/${organizationId}/people/${attendee.id}`}
to={`/organizations/${organizationId}/users/${attendee.id}`}
onClick={(e) => {
e.stopPropagation();
}}