Skip to content

Commit

Permalink
SubMenu closed as a default (#1195)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuli-ferna authored Nov 26, 2024
1 parent 41bffb8 commit 5530ce7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/connect-v1/src/env/tbtc-bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const ENV: Env = {
label: "More",
href: "",
subMenu: {
open: true,
open: false,
content: [{ label: "Cosmos", href: `${PUBLIC_URL}/cosmos` }],
},
},
Expand Down
2 changes: 1 addition & 1 deletion apps/connect-v1/src/env/token-bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const ENV: Env = {
label: "More",
href: "",
subMenu: {
open: true,
open: false,
content: [
{ label: "Cosmos", href: `${PUBLIC_URL}/cosmos`, active: true },
],
Expand Down
2 changes: 1 addition & 1 deletion apps/connect/src/env/token-bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const ENV: Env = {
label: "More",
href: "",
subMenu: {
open: true,
open: false,
content: [{ label: "Cosmos", href: `${PUBLIC_URL}/cosmos` }],
},
},
Expand Down
2 changes: 1 addition & 1 deletion apps/connect/src/env/usdc-bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const ENV: Env = {
label: "More",
href: "",
subMenu: {
open: true,
open: false,
content: [{ label: "Cosmos", href: `${PUBLIC_URL}/cosmos` }],
},
},
Expand Down
2 changes: 1 addition & 1 deletion apps/rewards-dashboard/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { PortalLogoWithText } from "../quarks/LogoVectors";

export const Header = () => {
const [showMenu, setShowMenu] = useState(false);
const [openMenu, setOpenMenu] = useState(true);
const [openMenu, setOpenMenu] = useState(false);
return (
<header className="flex flex-col gap-1">
<div className="flex flex-row gap-1 justify-between">
Expand Down

0 comments on commit 5530ce7

Please sign in to comment.