Update frontend links to users
Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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}
|
||||
|
||||
@@ -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();
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user