Skip to content

Commit

Permalink
Update user link in engagement user management tab (#1808)
Browse files Browse the repository at this point in the history
* setup consistent logout

* remove get baseurl

* remove unused import

* update link
  • Loading branch information
djnunez-aot authored Jul 7, 2023
1 parent 00960a3 commit 0aba80e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const TeamMemberListing = () => {
label: 'Team Members',
allowSort: false,
renderCell: (row: EngagementTeamMember) => (
<MuiLink component={Link} to={``}>
<MuiLink component={Link} to={`/usermanagement/${row.user_id}/details`}>
{row.user?.last_name + ', ' + row.user?.first_name}
</MuiLink>
),
Expand Down

0 comments on commit 0aba80e

Please sign in to comment.