diff --git a/static/app/components/nav/index.tsx b/static/app/components/nav/index.tsx index c2b248f30b4fec..32abbeeea5e30f 100644 --- a/static/app/components/nav/index.tsx +++ b/static/app/components/nav/index.tsx @@ -22,32 +22,32 @@ function Nav() { return ( - + {nav.primary.body.map(item => ( - + ))} {nav.primary.footer.map(item => ( - + ))} {nav.secondary.body.length > 0 && ( - + {nav.secondary.body.map(item => ( - + ))} {nav.secondary.footer.length > 0 && ( {nav.secondary.footer.map(item => ( - + ))} )} @@ -57,7 +57,7 @@ function Nav() { ); } -const NavContainer = styled('nav')` +const NavContainer = styled('div')` display: flex; position: sticky; top: 0;