Fix User name clicked on Groups page redirecting incorrectly (#1516)

Fixes #1515
This commit is contained in:
Kaan Kabalak
2022-02-03 19:07:23 -08:00
committed by GitHub
parent 297c980a8d
commit 608a5c3787

View File

@@ -222,7 +222,7 @@ const GroupsDetails = ({ classes }: IGroupDetailsProps) => {
{
type: "view",
onClick: (userName) => {
history.push(`${IAM_PAGES.USERS_VIEW}/${userName}`);
history.push(`${IAM_PAGES.USERS}/${userName}`);
},
},
]}