Skip to content

Commit

Permalink
Fix users route
Browse files Browse the repository at this point in the history
  • Loading branch information
mpbrown committed Dec 26, 2024
1 parent 5cfacc1 commit 31b2d0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/app/Settings/Users/ManageUsers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ const ManageUsers: React.FC<Props> = ({
</div>
<div className="grid-row">
<Pagination
baseRoute={"/settings"}
baseRoute={"/settings/users"}
totalEntries={totalEntries}
entriesPerPage={entriesPerPage}
currentPage={currentPage}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/commonComponents/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ const Header: React.FC<{}> = () => {
mobileDisplay: false,
},
{
url: "/settings/1",
url: "/settings/users/1",
displayPermissions: true,
onClick: () => setMenuVisible(false),
className: getNavItemClassName,
Expand Down

0 comments on commit 31b2d0a

Please sign in to comment.