diff --git a/src/apps/devdoc/app/components/header-secondary.tsx b/src/apps/devdoc/app/components/header-secondary.tsx
index 010e0d658..ab44d56f7 100644
--- a/src/apps/devdoc/app/components/header-secondary.tsx
+++ b/src/apps/devdoc/app/components/header-secondary.tsx
@@ -9,8 +9,10 @@ import useMenu from '../utils/use-menu';
export const MobileMenu = ({
items = [],
+ extra,
}: {
items?: { title: string; to: string }[];
+ extra?: ReactNode;
}) => {
return (
@@ -23,6 +25,8 @@ export const MobileMenu = ({
{item.title}
))}
+
+ {extra}
);
};
@@ -41,7 +45,7 @@ const HeaderSecondary = ({