Remove Discover section from legacy menu

This commit is contained in:
Jackson Harper
2024-03-12 11:33:33 +08:00
parent 4c2b1cd479
commit 84b35e08ad

View File

@ -20,7 +20,6 @@ import { ToggleCaretDownIcon } from '../../elements/icons/ToggleCaretDownIcon'
import Link from 'next/link'
import { ToggleCaretRightIcon } from '../../elements/icons/ToggleCaretRightIcon'
import { NavMenuFooter } from './Footer'
import { Discover } from "../../elements/DiscoverMenu"
export const LIBRARY_LEFT_MENU_WIDTH = '275px'
@ -32,7 +31,6 @@ type LibraryFilterMenuProps = {
showFilterMenu: boolean
setShowFilterMenu: (show: boolean) => void
}
export function LibraryLegacyMenu(props: LibraryFilterMenuProps): JSX.Element {
@ -148,7 +146,6 @@ export function LibraryLegacyMenu(props: LibraryFilterMenuProps): JSX.Element {
</Box>
<SavedSearches {...props} savedSearches={savedSearches} />
<Subscriptions {...props} subscriptions={subscriptions} />
<Discover />
<Labels {...props} labels={labels} />
<NavMenuFooter {...props} />
<Box css={{ height: '250px ' }} />