diff --git a/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx b/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx
index 6ab19f3eb..71a6c0c4c 100644
--- a/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx
+++ b/packages/web/components/templates/homeFeed/LibraryFilterMenu.tsx
@@ -5,6 +5,7 @@ import { Button } from '../../elements/Button'
import { Circle } from 'phosphor-react'
import {
Subscription,
+ SubscriptionType,
useGetSubscriptionsQuery,
} from '../../../lib/networking/queries/useGetSubscriptionsQuery'
import { useGetLabelsQuery } from '../../../lib/networking/queries/useGetLabelsQuery'
@@ -200,14 +201,26 @@ function Subscriptions(
{...props}
/>
{(props.subscriptions ?? []).map((item) => {
- return (
-
- )
+ switch (item.type) {
+ case SubscriptionType.NEWSLETTER:
+ return (
+
+ )
+ case SubscriptionType.RSS:
+ return (
+
+ )
+ }
})}
{
setSearchTerm(props.searchTerm ?? '')