Remove unused

This commit is contained in:
Jackson Harper 2024-06-25 11:44:07 +08:00
parent 911f6ed099
commit c06f25682d
2 changed files with 0 additions and 19 deletions

View file

@ -21,9 +21,6 @@ export type MultiSelectProps = {
searchTerm: string | undefined
applySearchQuery: (searchQuery: string) => void
showFilterMenu: boolean
setShowFilterMenu: (show: boolean) => void
numItemsSelected: number
multiSelectMode: MultiSelectMode
setMultiSelectMode: (mode: MultiSelectMode) => void

View file

@ -1,16 +0,0 @@
import { NavigationLayout } from '../../components/templates/NavigationLayout'
import { LibraryContainer } from '../../components/templates/library/LibraryContainer'
export default function Subscriptions(): JSX.Element {
return (
<NavigationLayout
section="subscriptions"
pageMetaDataProps={{
title: 'Subscriptions',
path: '/subscriptions',
}}
>
<LibraryContainer folder="following" />
</NavigationLayout>
)
}