diff --git a/frontend/src/component/menu/Header/Header.tsx b/frontend/src/component/menu/Header/Header.tsx index ff0482a208..9a689852da 100644 --- a/frontend/src/component/menu/Header/Header.tsx +++ b/frontend/src/component/menu/Header/Header.tsx @@ -127,34 +127,19 @@ const StyledAdvancedNavButton = styled('button')(({ theme }) => ({ cursor: 'pointer', })); -const StyledSpan = styled('span')({ - height: '16px', - paddingBottom: 16, -}); - -const StyledBadge = styled(Badge)({ - height: '16px', - maxHeight: '16px', - padding: 0.25, - marginBottom: 0, -}); - const styledIconProps = (theme: Theme) => ({ color: theme.palette.neutral.main, }); const StyledLink = styled(Link)(({ theme }) => focusable(theme)); -const StyledLinkWithBetaBagde = ({ +const StyledLinkWithBetaBadge = ({ title, to, }: { title: string; to: string }) => ( - {title}{' '} - - Beta - + {title} Beta ); @@ -279,7 +264,7 @@ const Header: VFC = () => {