Skip to content

Commit

Permalink
hide subscriptions (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulclindo authored Oct 1, 2024
1 parent 22eea30 commit a3ce09b
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions apps/shinkai-desktop/src/pages/layout/main-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ import {
import {
AISearchContentIcon,
// AiTasksIcon,
BrowseSubscriptionIcon,
// BrowseSubscriptionIcon,
CreateAIIcon,
FilesIcon,
InboxIcon,
MySubscriptionsIcon,
// MySubscriptionsIcon,
SheetIcon,
ShinkaiCombinationMarkIcon,
ToolsIcon,
Expand Down Expand Up @@ -333,16 +333,16 @@ export function MainNav() {
icon: <AISearchContentIcon className="h-5 w-5" />,
},

{
title: t('layout.menuItems.subscriptions'),
href: '/public-subscriptions',
icon: <BrowseSubscriptionIcon className="h-5 w-5" />,
},
{
title: t('layout.menuItems.mySubscriptions'),
href: '/my-subscriptions',
icon: <MySubscriptionsIcon className="h-5 w-5" />,
},
// {
// title: t('layout.menuItems.subscriptions'),
// href: '/public-subscriptions',
// icon: <BrowseSubscriptionIcon className="h-5 w-5" />,
// },
// {
// title: t('layout.menuItems.mySubscriptions'),
// href: '/my-subscriptions',
// icon: <MySubscriptionsIcon className="h-5 w-5" />,
// },
optInExperimental && {
title: 'Playground',
href: '/workflow-playground',
Expand Down Expand Up @@ -512,8 +512,7 @@ export function MainNav() {
</TooltipPortal>
</Tooltip>
</TooltipProvider>
{(item.href === '/my-subscriptions' ||
item.href === '/vector-search') && (
{item.href === '/vector-search' && (
<Separator className="my-0.5 w-full bg-gray-200" />
)}
</Fragment>
Expand Down

0 comments on commit a3ce09b

Please sign in to comment.