Skip to content

Commit

Permalink
remove added ? to url
Browse files Browse the repository at this point in the history
fixes : keycloak#36032
Signed-off-by: Erik Jan de Wit <[email protected]>
  • Loading branch information
edewit committed Dec 19, 2024
1 parent 41696b9 commit b22c4e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/apps/account-ui/src/root/PageNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export const NavLink = ({
isActive,
children,
}: PropsWithChildren<NavLinkProps>) => {
const menuItemPath = getFullUrl(path) + `?${location.search}`;
const menuItemPath = getFullUrl(path) + location.search;
const href = useHref(menuItemPath);
const handleClick = useLinkClickHandler(menuItemPath);

Expand Down

0 comments on commit b22c4e1

Please sign in to comment.