Skip to content

Commit

Permalink
fix: remove top right menu dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-wicki committed Sep 9, 2021
1 parent cff5068 commit 0c2c14f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/packages/app/web/src/components/ui/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Disclosure } from '@headlessui/react'
import { MenuIcon, XIcon } from '@heroicons/react/outline'
import { Parca, ParcaSmall } from '@parca/icons'
import cx from 'classnames'
import Dropdown from './Dropdown'

const links = [{ name: 'Profiles', href: '/', current: true }]

Expand Down Expand Up @@ -63,7 +62,8 @@ const Navbar = () => {
</div>
</div>
</div>
<div className='absolute inset-y-0 right-0 flex items-center pr-2 sm:static sm:inset-auto sm:ml-6 sm:pr-0'>
{/* placeholder for right menu drop down */}
{/* <div className='absolute inset-y-0 right-0 flex items-center pr-2 sm:static sm:inset-auto sm:ml-6 sm:pr-0'>
<Dropdown
text=''
element={
Expand All @@ -76,7 +76,7 @@ const Navbar = () => {
>
<Dropdown.Item onSelect={() => {}}>Sign out</Dropdown.Item>
</Dropdown>
</div>
</div> */}
</div>
</div>

Expand Down

0 comments on commit 0c2c14f

Please sign in to comment.