Skip to content

Commit

Permalink
Merge pull request #315 from GenaDrop/staging
Browse files Browse the repository at this point in the history
Adjusted nav keys
  • Loading branch information
Jikugodwill authored Jul 6, 2024
2 parents e9c1163 + 4f184a0 commit 6a2db37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/Mintbase/widget/Mintbase/App/Navbar/Index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ const Navbar = ({ routes }) => {
([key, value]) =>
!value.hidden && (
<MbDropdownHoverMenu
key={key}
key={"nav-" + key.toString()}
dropdownButton={
<MbArrowMenu
mode={isDarkModeOn}
Expand Down
2 changes: 1 addition & 1 deletion apps/Mintbase/widget/Mintbase/App/Router.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function Router({ config, ...passProps }) {
);
} else {
return (
<Content /*key={param + JSON.stringify(activeRoute)}*/>
<Content key={param + JSON.stringify(activeRoute)}>
<Widget
src={activeRoute.path}
props={{
Expand Down

0 comments on commit 6a2db37

Please sign in to comment.