Fix navigation stacking (#3300)

This commit is contained in:
Patryk Andrzejewski 2023-03-07 16:15:12 +01:00 committed by GitHub
parent 276df19b21
commit a70ddd39fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -29,6 +29,7 @@ export const ItemGroup: React.FC<Props> = ({ menuItem }) => {
data-test-id={`menu-item-label-${menuItem.id}`}
>
<Link
replace={isActive}
to={menuItem?.url ?? ""}
className={sprinkles({
width: "100%",

View file

@ -34,6 +34,7 @@ export const SingleItem: React.FC<Props> = ({ menuItem }) => {
>
<Link
to={menuItem.url}
replace={active}
className={sprinkles({
display: "block",
width: "100%",