From ef043c690607053814a477bbd8fa0ea0a3165772 Mon Sep 17 00:00:00 2001 From: Joel Date: Thu, 6 Nov 2025 14:53:11 +0800 Subject: [PATCH] fix: no app not show problem --- web/app/components/explore/sidebar/index.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/web/app/components/explore/sidebar/index.tsx b/web/app/components/explore/sidebar/index.tsx index a9d67ae2da..afae4c7d67 100644 --- a/web/app/components/explore/sidebar/index.tsx +++ b/web/app/components/explore/sidebar/index.tsx @@ -88,10 +88,16 @@ const SideBar: FC = ({ {!isMobile && !isFold &&
{t('explore.sidebar.title')}
} + + {installedApps.length === 0 && !isMobile && !isFold + &&
+ +
+ } + {installedApps.length > 0 && (
{!isMobile && !isFold &&

{t('explore.sidebar.webApps')}

} - {installedApps.length === 0 && !isMobile && !isFold && }