diff --git a/src/components/Navbar/MainMenu/MainMenu.tsx b/src/components/Navbar/MainMenu/MainMenu.tsx index 4878e474..0fb1c4e4 100644 --- a/src/components/Navbar/MainMenu/MainMenu.tsx +++ b/src/components/Navbar/MainMenu/MainMenu.tsx @@ -75,6 +75,7 @@ export const MainMenu = (props: MainMenuProps) => { mainUrl={extraButton.link} textColor={extraButton.textColor} backgroundColor={extraButton.backgroundColor} + isExtraButton /> ) : null} diff --git a/src/components/Navbar/MenuItem/MenuItem.tsx b/src/components/Navbar/MenuItem/MenuItem.tsx index fcd2f046..c76dfb2c 100644 --- a/src/components/Navbar/MenuItem/MenuItem.tsx +++ b/src/components/Navbar/MenuItem/MenuItem.tsx @@ -16,7 +16,8 @@ export const MenuItem = (props: MenuItemProps) => { isMobile, mainUrl, textColor, - backgroundColor + backgroundColor, + isExtraButton } = props const mainRedirect = useCallback(() => { @@ -27,7 +28,9 @@ export const MenuItem = (props: MenuItemProps) => {